pub enum Capping {
Complete,
Truncated {
omitted: usize,
},
}Expand description
Whether a capped list holds everything that was offered to it.
Variants§
Trait Implementations§
impl Copy for Capping
impl Eq for Capping
impl StructuralPartialEq for Capping
Auto Trait Implementations§
impl Freeze for Capping
impl RefUnwindSafe for Capping
impl Send for Capping
impl Sync for Capping
impl Unpin for Capping
impl UnsafeUnpin for Capping
impl UnwindSafe for Capping
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