pub enum DeltaRunType {
Zero = 0,
I8 = 1,
I16 = 2,
I32 = 4,
}
Expand description
The type of values for a given delta run (influences the number of bytes per delta)
The variants are intentionally set to the byte size of the type to allow usage as a multiplier when computing offsets.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for DeltaRunType
impl Clone for DeltaRunType
Source§fn clone(&self) -> DeltaRunType
fn clone(&self) -> DeltaRunType
Returns a copy of the value. Read more
1.0.0 · 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 DeltaRunType
impl Debug for DeltaRunType
Source§impl PartialEq for DeltaRunType
impl PartialEq for DeltaRunType
impl Copy for DeltaRunType
impl StructuralPartialEq for DeltaRunType
Auto Trait Implementations§
impl Freeze for DeltaRunType
impl RefUnwindSafe for DeltaRunType
impl Send for DeltaRunType
impl Sync for DeltaRunType
impl Unpin for DeltaRunType
impl UnwindSafe for DeltaRunType
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