pub enum EntryDataMode {
Ignore,
Crc32,
Keep,
KeepAndCrc32,
}
Expand description
Define what to do with the compressed bytes portion of a pack Entry
Variants
Ignore
Do nothing with the compressed bytes we read
Crc32
Only create a CRC32 of the entry, otherwise similar to Ignore
Keep
Keep them and pass them along in a newly allocated buffer
KeepAndCrc32
As above, but also compute a CRC32
Implementations
Trait Implementations
sourceimpl Clone for EntryDataMode
impl Clone for EntryDataMode
sourcefn clone(&self) -> EntryDataMode
fn clone(&self) -> EntryDataMode
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for EntryDataMode
impl Debug for EntryDataMode
sourceimpl<'de> Deserialize<'de> for EntryDataMode
impl<'de> Deserialize<'de> for EntryDataMode
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Hash for EntryDataMode
impl Hash for EntryDataMode
sourceimpl Ord for EntryDataMode
impl Ord for EntryDataMode
sourceimpl PartialEq<EntryDataMode> for EntryDataMode
impl PartialEq<EntryDataMode> for EntryDataMode
sourceimpl PartialOrd<EntryDataMode> for EntryDataMode
impl PartialOrd<EntryDataMode> for EntryDataMode
sourcefn partial_cmp(&self, other: &EntryDataMode) -> Option<Ordering>
fn partial_cmp(&self, other: &EntryDataMode) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl Serialize for EntryDataMode
impl Serialize for EntryDataMode
impl Copy for EntryDataMode
impl Eq for EntryDataMode
impl StructuralEq for EntryDataMode
impl StructuralPartialEq for EntryDataMode
Auto Trait Implementations
impl RefUnwindSafe for EntryDataMode
impl Send for EntryDataMode
impl Sync for EntryDataMode
impl Unpin for EntryDataMode
impl UnwindSafe for EntryDataMode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more