pub struct MorphOffsetSpan {
pub start: u32,
pub count: u32,
}Fields§
§start: u32§count: u32Trait Implementations§
Source§impl Clone for MorphOffsetSpan
impl Clone for MorphOffsetSpan
Source§fn clone(&self) -> MorphOffsetSpan
fn clone(&self) -> MorphOffsetSpan
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for MorphOffsetSpan
Source§impl Debug for MorphOffsetSpan
impl Debug for MorphOffsetSpan
Source§impl Default for MorphOffsetSpan
impl Default for MorphOffsetSpan
Source§fn default() -> MorphOffsetSpan
fn default() -> MorphOffsetSpan
Returns the “default value” for a type. Read more
impl Eq for MorphOffsetSpan
Source§impl PartialEq for MorphOffsetSpan
impl PartialEq for MorphOffsetSpan
impl StructuralPartialEq for MorphOffsetSpan
Auto Trait Implementations§
impl Freeze for MorphOffsetSpan
impl RefUnwindSafe for MorphOffsetSpan
impl Send for MorphOffsetSpan
impl Sync for MorphOffsetSpan
impl Unpin for MorphOffsetSpan
impl UnsafeUnpin for MorphOffsetSpan
impl UnwindSafe for MorphOffsetSpan
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