pub enum ChasePrimitive {
Nothing,
Id(PrimitiveDebugId),
LocalRect(LayoutRect),
}
Variants§
Trait Implementations§
Source§impl Clone for ChasePrimitive
impl Clone for ChasePrimitive
Source§fn clone(&self) -> ChasePrimitive
fn clone(&self) -> ChasePrimitive
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 ChasePrimitive
impl Debug for ChasePrimitive
Source§impl Default for ChasePrimitive
impl Default for ChasePrimitive
Source§impl PartialEq for ChasePrimitive
impl PartialEq for ChasePrimitive
impl Copy for ChasePrimitive
impl StructuralPartialEq for ChasePrimitive
Auto Trait Implementations§
impl Freeze for ChasePrimitive
impl RefUnwindSafe for ChasePrimitive
impl Send for ChasePrimitive
impl Sync for ChasePrimitive
impl Unpin for ChasePrimitive
impl UnwindSafe for ChasePrimitive
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