pub struct ClipItemKey {
    pub kind: ClipItemKeyKind,
    pub spatial_node_index: SpatialNodeIndex,
}Fields§
§kind: ClipItemKeyKind§spatial_node_index: SpatialNodeIndexTrait Implementations§
Source§impl Clone for ClipItemKey
 
impl Clone for ClipItemKey
Source§fn clone(&self) -> ClipItemKey
 
fn clone(&self) -> ClipItemKey
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 ClipItemKey
 
impl Debug for ClipItemKey
Source§impl From<ClipItemKey> for ClipNode
 
impl From<ClipItemKey> for ClipNode
Source§fn from(item: ClipItemKey) -> Self
 
fn from(item: ClipItemKey) -> Self
Converts to this type from the input type.
Source§impl Hash for ClipItemKey
 
impl Hash for ClipItemKey
Source§impl InternDebug for ClipItemKey
 
impl InternDebug for ClipItemKey
fn on_interned(&self, _uid: ItemUid)
Source§impl MallocSizeOf for ClipItemKey
 
impl MallocSizeOf for ClipItemKey
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 ClipItemKey
 
impl PartialEq for ClipItemKey
Source§impl Serialize for ClipItemKey
 
impl Serialize for ClipItemKey
impl Copy for ClipItemKey
impl Eq for ClipItemKey
impl StructuralPartialEq for ClipItemKey
Auto Trait Implementations§
impl Freeze for ClipItemKey
impl RefUnwindSafe for ClipItemKey
impl Send for ClipItemKey
impl Sync for ClipItemKey
impl Unpin for ClipItemKey
impl UnwindSafe for ClipItemKey
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