Enum git_odb::data::input::EntryDataMode [−][src]
pub enum EntryDataMode {
Ignore,
Crc32,
Keep,
KeepAndCrc32,
}
Expand description
Define what to do with the compressed bytes portion of a pack Entry
Variants
Do nothing with the compressed bytes we read
Only create a CRC32 of the entry, otherwise similar to Ignore
Keep them and pass them along in a newly allocated buffer
As above, but also compute a CRC32
Implementations
Trait Implementations
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
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
Mutably borrows from an owned value. Read more