pub struct LenAndSourceOutcome(/* private fields */);Expand description
The base types for outcomes that encodes Option<(u32, u32)>, that contains length and source,
as a single 64-bit value. None is encoded as u64::MAX, and thus length must be less than
u32::MAX.
Implementations§
Trait Implementations§
Source§impl Clone for LenAndSourceOutcome
impl Clone for LenAndSourceOutcome
Source§fn clone(&self) -> LenAndSourceOutcome
fn clone(&self) -> LenAndSourceOutcome
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 moreSource§impl Debug for LenAndSourceOutcome
impl Debug for LenAndSourceOutcome
impl Copy for LenAndSourceOutcome
Auto Trait Implementations§
impl Freeze for LenAndSourceOutcome
impl RefUnwindSafe for LenAndSourceOutcome
impl Send for LenAndSourceOutcome
impl Sync for LenAndSourceOutcome
impl Unpin for LenAndSourceOutcome
impl UnsafeUnpin for LenAndSourceOutcome
impl UnwindSafe for LenAndSourceOutcome
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