Struct gix_config::color::Attribute
source · pub struct Attribute(_);
Expand description
Discriminating enum for Color
attributes.
git-config
supports modifiers and their negators. The negating color
attributes are equivalent to having a no
or no-
prefix to the normal
variant.
Implementations§
source§impl Attribute
impl Attribute
pub const BOLD: Attribute = Self::from_bits_retain(1 << 1)
pub const DIM: Attribute = Self::from_bits_retain(1 << 2)
pub const ITALIC: Attribute = Self::from_bits_retain(1 << 3)
pub const UL: Attribute = Self::from_bits_retain(1 << 4)
pub const BLINK: Attribute = Self::from_bits_retain(1 << 5)
pub const REVERSE: Attribute = Self::from_bits_retain(1 << 6)
pub const STRIKE: Attribute = Self::from_bits_retain(1 << 7)
sourcepub const RESET: Attribute = Self::from_bits_retain(1 << 8)
pub const RESET: Attribute = Self::from_bits_retain(1 << 8)
Reset is special as we have to be able to parse it, without git actually doing anything with it
pub const NO_DIM: Attribute = Self::from_bits_retain(1 << 21)
pub const NO_BOLD: Attribute = Self::from_bits_retain(1 << 22)
pub const NO_ITALIC: Attribute = Self::from_bits_retain(1 << 23)
pub const NO_UL: Attribute = Self::from_bits_retain(1 << 24)
pub const NO_BLINK: Attribute = Self::from_bits_retain(1 << 25)
pub const NO_REVERSE: Attribute = Self::from_bits_retain(1 << 26)
pub const NO_STRIKE: Attribute = Self::from_bits_retain(1 << 27)
source§impl Attribute
impl Attribute
sourcepub const fn bits(&self) -> u32
pub const fn bits(&self) -> u32
Get the underlying bits value.
The returned value is exactly the bits set in this flags value.
sourcepub const fn from_bits(bits: u32) -> Option<Attribute>
pub const fn from_bits(bits: u32) -> Option<Attribute>
Convert from a bits value.
This method will return None
if any unknown bits are set.
sourcepub const fn from_bits_truncate(bits: u32) -> Attribute
pub const fn from_bits_truncate(bits: u32) -> Attribute
Convert from a bits value, unsetting any unknown bits.
sourcepub const fn from_bits_retain(bits: u32) -> Attribute
pub const fn from_bits_retain(bits: u32) -> Attribute
Convert from a bits value exactly.
sourcepub fn from_name(name: &str) -> Option<Attribute>
pub fn from_name(name: &str) -> Option<Attribute>
Get a flags value with the bits of a flag with the given name set.
This method will return None
if name
is empty or doesn’t
correspond to any named flag.
sourcepub const fn intersects(&self, other: Attribute) -> bool
pub const fn intersects(&self, other: Attribute) -> bool
Whether any set bits in a source flags value are also set in a target flags value.
sourcepub const fn contains(&self, other: Attribute) -> bool
pub const fn contains(&self, other: Attribute) -> bool
Whether all set bits in a source flags value are also set in a target flags value.
sourcepub fn remove(&mut self, other: Attribute)
pub fn remove(&mut self, other: Attribute)
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
remove
won’t truncate other
, but the !
operator will.
sourcepub fn toggle(&mut self, other: Attribute)
pub fn toggle(&mut self, other: Attribute)
The bitwise exclusive-or (^
) of the bits in two flags values.
sourcepub fn set(&mut self, other: Attribute, value: bool)
pub fn set(&mut self, other: Attribute, value: bool)
Call insert
when value
is true
or remove
when value
is false
.
sourcepub const fn intersection(self, other: Attribute) -> Attribute
pub const fn intersection(self, other: Attribute) -> Attribute
The bitwise and (&
) of the bits in two flags values.
sourcepub const fn union(self, other: Attribute) -> Attribute
pub const fn union(self, other: Attribute) -> Attribute
The bitwise or (|
) of the bits in two flags values.
sourcepub const fn difference(self, other: Attribute) -> Attribute
pub const fn difference(self, other: Attribute) -> Attribute
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
difference
won’t truncate other
, but the !
operator will.
sourcepub const fn symmetric_difference(self, other: Attribute) -> Attribute
pub const fn symmetric_difference(self, other: Attribute) -> Attribute
The bitwise exclusive-or (^
) of the bits in two flags values.
sourcepub const fn complement(self) -> Attribute
pub const fn complement(self) -> Attribute
The bitwise negation (!
) of the bits in a flags value, truncating the result.
source§impl Attribute
impl Attribute
sourcepub const fn iter(&self) -> Iter<Attribute>
pub const fn iter(&self) -> Iter<Attribute>
Yield a set of contained flags values.
Each yielded flags value will correspond to a defined named flag. Any unknown bits will be yielded together as a final flags value.
sourcepub const fn iter_names(&self) -> IterNames<Attribute>
pub const fn iter_names(&self) -> IterNames<Attribute>
Yield a set of contained named flags values.
This method is like iter
, except only yields bits in contained named flags.
Any unknown bits, or bits not corresponding to a contained flag will not be yielded.
Trait Implementations§
source§impl BitAndAssign<Attribute> for Attribute
impl BitAndAssign<Attribute> for Attribute
source§fn bitand_assign(&mut self, other: Attribute)
fn bitand_assign(&mut self, other: Attribute)
The bitwise and (&
) of the bits in two flags values.
source§impl BitOrAssign<Attribute> for Attribute
impl BitOrAssign<Attribute> for Attribute
source§fn bitor_assign(&mut self, other: Attribute)
fn bitor_assign(&mut self, other: Attribute)
The bitwise or (|
) of the bits in two flags values.
source§impl BitXorAssign<Attribute> for Attribute
impl BitXorAssign<Attribute> for Attribute
source§fn bitxor_assign(&mut self, other: Attribute)
fn bitxor_assign(&mut self, other: Attribute)
The bitwise exclusive-or (^
) of the bits in two flags values.
source§impl Extend<Attribute> for Attribute
impl Extend<Attribute> for Attribute
source§fn extend<T>(&mut self, iterator: T)where
T: IntoIterator<Item = Attribute>,
fn extend<T>(&mut self, iterator: T)where T: IntoIterator<Item = Attribute>,
The bitwise or (|
) of the bits in each flags value.
source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)source§impl Flags for Attribute
impl Flags for Attribute
source§const FLAGS: &'static [Flag<Attribute>] = &[{ ::bitflags::Flag::new("BOLD", Attribute::BOLD) },
{ ::bitflags::Flag::new("DIM", Attribute::DIM) },
{ ::bitflags::Flag::new("ITALIC", Attribute::ITALIC) },
{ ::bitflags::Flag::new("UL", Attribute::UL) },
{ ::bitflags::Flag::new("BLINK", Attribute::BLINK) },
{ ::bitflags::Flag::new("REVERSE", Attribute::REVERSE) },
{ ::bitflags::Flag::new("STRIKE", Attribute::STRIKE) },
{ ::bitflags::Flag::new("RESET", Attribute::RESET) },
{ ::bitflags::Flag::new("NO_DIM", Attribute::NO_DIM) },
{ ::bitflags::Flag::new("NO_BOLD", Attribute::NO_BOLD) },
{ ::bitflags::Flag::new("NO_ITALIC", Attribute::NO_ITALIC) },
{ ::bitflags::Flag::new("NO_UL", Attribute::NO_UL) },
{ ::bitflags::Flag::new("NO_BLINK", Attribute::NO_BLINK) },
{ ::bitflags::Flag::new("NO_REVERSE", Attribute::NO_REVERSE) },
{ ::bitflags::Flag::new("NO_STRIKE", Attribute::NO_STRIKE) }]
const FLAGS: &'static [Flag<Attribute>] = &[{ ::bitflags::Flag::new("BOLD", Attribute::BOLD) }, { ::bitflags::Flag::new("DIM", Attribute::DIM) }, { ::bitflags::Flag::new("ITALIC", Attribute::ITALIC) }, { ::bitflags::Flag::new("UL", Attribute::UL) }, { ::bitflags::Flag::new("BLINK", Attribute::BLINK) }, { ::bitflags::Flag::new("REVERSE", Attribute::REVERSE) }, { ::bitflags::Flag::new("STRIKE", Attribute::STRIKE) }, { ::bitflags::Flag::new("RESET", Attribute::RESET) }, { ::bitflags::Flag::new("NO_DIM", Attribute::NO_DIM) }, { ::bitflags::Flag::new("NO_BOLD", Attribute::NO_BOLD) }, { ::bitflags::Flag::new("NO_ITALIC", Attribute::NO_ITALIC) }, { ::bitflags::Flag::new("NO_UL", Attribute::NO_UL) }, { ::bitflags::Flag::new("NO_BLINK", Attribute::NO_BLINK) }, { ::bitflags::Flag::new("NO_REVERSE", Attribute::NO_REVERSE) }, { ::bitflags::Flag::new("NO_STRIKE", Attribute::NO_STRIKE) }]
source§fn from_bits_retain(bits: u32) -> Attribute
fn from_bits_retain(bits: u32) -> Attribute
§fn from_bits_truncate(bits: Self::Bits) -> Self
fn from_bits_truncate(bits: Self::Bits) -> Self
§fn from_name(name: &str) -> Option<Self>
fn from_name(name: &str) -> Option<Self>
§fn iter_names(&self) -> IterNames<Self>
fn iter_names(&self) -> IterNames<Self>
§fn intersects(&self, other: Self) -> boolwhere
Self: Sized,
fn intersects(&self, other: Self) -> boolwhere Self: Sized,
§fn contains(&self, other: Self) -> boolwhere
Self: Sized,
fn contains(&self, other: Self) -> boolwhere Self: Sized,
§fn insert(&mut self, other: Self)where
Self: Sized,
fn insert(&mut self, other: Self)where Self: Sized,
|
) of the bits in two flags values.§fn remove(&mut self, other: Self)where
Self: Sized,
fn remove(&mut self, other: Self)where Self: Sized,
&!
). Read more§fn toggle(&mut self, other: Self)where
Self: Sized,
fn toggle(&mut self, other: Self)where Self: Sized,
^
) of the bits in two flags values.§fn set(&mut self, other: Self, value: bool)where
Self: Sized,
fn set(&mut self, other: Self, value: bool)where Self: Sized,
Flags::insert
] when value
is true
or [Flags::remove
] when value
is false
.§fn intersection(self, other: Self) -> Self
fn intersection(self, other: Self) -> Self
&
) of the bits in two flags values.§fn difference(self, other: Self) -> Self
fn difference(self, other: Self) -> Self
&!
). Read more§fn symmetric_difference(self, other: Self) -> Self
fn symmetric_difference(self, other: Self) -> Self
^
) of the bits in two flags values.§fn complement(self) -> Self
fn complement(self) -> Self
!
) of the bits in a flags value, truncating the result.source§impl FromIterator<Attribute> for Attribute
impl FromIterator<Attribute> for Attribute
source§impl IntoIterator for Attribute
impl IntoIterator for Attribute
source§impl Ord for Attribute
impl Ord for Attribute
source§impl PartialEq<Attribute> for Attribute
impl PartialEq<Attribute> for Attribute
source§impl PartialOrd<Attribute> for Attribute
impl PartialOrd<Attribute> for Attribute
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for Attribute
Available on crate feature serde
only.
impl Serialize for Attribute
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,
source§impl Sub<Attribute> for Attribute
impl Sub<Attribute> for Attribute
source§impl SubAssign<Attribute> for Attribute
impl SubAssign<Attribute> for Attribute
source§fn sub_assign(&mut self, other: Attribute)
fn sub_assign(&mut self, other: Attribute)
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
difference
won’t truncate other
, but the !
operator will.