pub struct ClipNodeId(u32);Expand description
ID for a ClipTreeNode
Tuple Fields§
§0: u32Implementations§
Source§impl ClipNodeId
impl ClipNodeId
pub const NONE: ClipNodeId
Trait Implementations§
Source§impl Clone for ClipNodeId
impl Clone for ClipNodeId
Source§fn clone(&self) -> ClipNodeId
fn clone(&self) -> ClipNodeId
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ClipNodeId
impl Debug for ClipNodeId
Source§impl Hash for ClipNodeId
impl Hash for ClipNodeId
Source§impl MallocSizeOf for ClipNodeId
impl MallocSizeOf for ClipNodeId
Source§fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
Measure the heap usage of all descendant heap-allocated structures, but
not the space taken up by the value itself.
Source§impl PartialEq for ClipNodeId
impl PartialEq for ClipNodeId
Source§impl Serialize for ClipNodeId
impl Serialize for ClipNodeId
impl Copy for ClipNodeId
impl Eq for ClipNodeId
impl StructuralPartialEq for ClipNodeId
Auto Trait Implementations§
impl Freeze for ClipNodeId
impl RefUnwindSafe for ClipNodeId
impl Send for ClipNodeId
impl Sync for ClipNodeId
impl Unpin for ClipNodeId
impl UnwindSafe for ClipNodeId
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more