Enum gix_index::write::Extensions
source · pub enum Extensions {
All,
Given {
tree_cache: bool,
end_of_index_entry: bool,
},
None,
}
Expand description
A way to specify which of the optional extensions to write.
Variants§
All
Writes all available optional extensions to avoid loosing any information.
Given
Fields
Only write the given optional extensions, with each extension being marked by a boolean flag.
Note: mandatory extensions
Mandatory extensions, like sdir
or other lower-case ones, may not be configured here as they need to be present
or absent depending on the state of the index itself and for it to be valid.
None
Write no optional extension at all for what should be the smallest possible index
Implementations§
source§impl Extensions
impl Extensions
sourcepub fn should_write(&self, signature: Signature) -> Option<Signature>
pub fn should_write(&self, signature: Signature) -> Option<Signature>
Returns Some(signature)
if it should be written out.
Trait Implementations§
source§impl Clone for Extensions
impl Clone for Extensions
source§fn clone(&self) -> Extensions
fn clone(&self) -> Extensions
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 more