pub enum LaneWriteOutcome {
Written,
Full,
FrameTooLarge {
frame_len: usize,
capacity: usize,
},
}Variants§
Trait Implementations§
Source§impl Clone for LaneWriteOutcome
impl Clone for LaneWriteOutcome
Source§fn clone(&self) -> LaneWriteOutcome
fn clone(&self) -> LaneWriteOutcome
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 LaneWriteOutcome
Source§impl Debug for LaneWriteOutcome
impl Debug for LaneWriteOutcome
impl Eq for LaneWriteOutcome
Source§impl PartialEq for LaneWriteOutcome
impl PartialEq for LaneWriteOutcome
impl StructuralPartialEq for LaneWriteOutcome
Auto Trait Implementations§
impl Freeze for LaneWriteOutcome
impl RefUnwindSafe for LaneWriteOutcome
impl Send for LaneWriteOutcome
impl Sync for LaneWriteOutcome
impl Unpin for LaneWriteOutcome
impl UnsafeUnpin for LaneWriteOutcome
impl UnwindSafe for LaneWriteOutcome
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