Struct webrender::clip::ClipNodeId
source · pub struct ClipNodeId(u32);
Expand description
ID for a ClipTreeNode
Tuple Fields§
§0: u32
Implementations§
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 copy 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§fn eq(&self, other: &ClipNodeId) -> bool
fn eq(&self, other: &ClipNodeId) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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> 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