Enum git_repository::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
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 moresource§impl Debug for Extensions
impl Debug for Extensions
source§impl Default for Extensions
impl Default for Extensions
source§fn default() -> Extensions
fn default() -> Extensions
Returns the “default value” for a type. Read more