pub enum KvRingAppend {
Contiguous {
write_row: usize,
},
Rebase {
src_row: usize,
keep_rows: usize,
new_base: usize,
write_row: usize,
},
}Variants§
Trait Implementations§
Source§impl Clone for KvRingAppend
impl Clone for KvRingAppend
Source§fn clone(&self) -> KvRingAppend
fn clone(&self) -> KvRingAppend
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 KvRingAppend
Source§impl Debug for KvRingAppend
impl Debug for KvRingAppend
impl Eq for KvRingAppend
Source§impl PartialEq for KvRingAppend
impl PartialEq for KvRingAppend
impl StructuralPartialEq for KvRingAppend
Auto Trait Implementations§
impl Freeze for KvRingAppend
impl RefUnwindSafe for KvRingAppend
impl Send for KvRingAppend
impl Sync for KvRingAppend
impl Unpin for KvRingAppend
impl UnsafeUnpin for KvRingAppend
impl UnwindSafe for KvRingAppend
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