Enum gix_config::integer::Suffix
source · pub enum Suffix {
Kibi,
Mebi,
Gibi,
}
Expand description
Integer suffixes that are supported by git-config
.
These values are base-2 unit of measurements, not the base-10 variants.
Variants§
Implementations§
Trait Implementations§
source§impl Ord for Suffix
impl Ord for Suffix
source§impl PartialEq for Suffix
impl PartialEq for Suffix
source§impl PartialOrd for Suffix
impl PartialOrd for Suffix
1.0.0 · source§fn 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 moresource§impl Serialize for Suffix
Available on crate feature serde
only.
impl Serialize for Suffix
Available on crate feature
serde
only.source§fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for Suffix
impl Eq for Suffix
impl StructuralPartialEq for Suffix
Auto Trait Implementations§
impl Freeze for Suffix
impl RefUnwindSafe for Suffix
impl Send for Suffix
impl Sync for Suffix
impl Unpin for Suffix
impl UnwindSafe for Suffix
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