Struct git2::StashFlags [−]
pub struct StashFlags { /* fields omitted */ }Methods
impl StashFlags
impl StashFlagspub const DEFAULT: StashFlags
DEFAULT: StashFlags = StashFlags{bits: raw::GIT_STASH_DEFAULT as u32,}
pub const KEEP_INDEX: StashFlags
KEEP_INDEX: StashFlags = StashFlags{bits: raw::GIT_STASH_KEEP_INDEX as u32,}
All changes already added to the index are left intact in the working directory
pub const INCLUDE_UNTRACKED: StashFlags
INCLUDE_UNTRACKED: StashFlags = StashFlags{bits: raw::GIT_STASH_INCLUDE_UNTRACKED as u32,}
All untracked files are also stashed and then cleaned up from the working directory
pub const INCLUDE_IGNORED: StashFlags
INCLUDE_IGNORED: StashFlags = StashFlags{bits: raw::GIT_STASH_INCLUDE_IGNORED as u32,}
All ignored files are also stashed and then cleaned up from the working directory
pub fn empty() -> StashFlags
pub fn empty() -> StashFlagsReturns an empty set of flags.
pub fn all() -> StashFlags
pub fn all() -> StashFlagsReturns the set containing all flags.
pub fn bits(&self) -> u32
pub fn bits(&self) -> u32Returns the raw value of the flags currently stored.
pub fn from_bits(bits: u32) -> Option<StashFlags>
pub fn from_bits(bits: u32) -> Option<StashFlags>Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub fn from_bits_truncate(bits: u32) -> StashFlags
pub fn from_bits_truncate(bits: u32) -> StashFlagsConvert from underlying bit representation, dropping any bits that do not correspond to flags.
pub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> boolReturns true if no flags are currently stored.
pub fn is_all(&self) -> bool
pub fn is_all(&self) -> boolReturns true if all flags are currently set.
pub fn intersects(&self, other: StashFlags) -> bool
pub fn intersects(&self, other: StashFlags) -> boolReturns true if there are flags common to both self and other.
pub fn contains(&self, other: StashFlags) -> bool
pub fn contains(&self, other: StashFlags) -> boolReturns true all of the flags in other are contained within self.
pub fn insert(&mut self, other: StashFlags)
pub fn insert(&mut self, other: StashFlags)Inserts the specified flags in-place.
pub fn remove(&mut self, other: StashFlags)
pub fn remove(&mut self, other: StashFlags)Removes the specified flags in-place.
pub fn toggle(&mut self, other: StashFlags)
pub fn toggle(&mut self, other: StashFlags)Toggles the specified flags in-place.
pub fn set(&mut self, other: StashFlags, value: bool)
pub fn set(&mut self, other: StashFlags, value: bool)Inserts or removes the specified flags depending on the passed value.
impl StashFlags[src]
impl StashFlagspub fn is_default(&self) -> bool[src]
pub fn is_default(&self) -> boolpub fn is_keep_index(&self) -> bool[src]
pub fn is_keep_index(&self) -> boolpub fn is_include_untracked(&self) -> bool[src]
pub fn is_include_untracked(&self) -> boolpub fn is_include_ignored(&self) -> bool[src]
pub fn is_include_ignored(&self) -> boolTrait Implementations
impl Copy for StashFlags
impl Copy for StashFlagsimpl PartialEq for StashFlags
impl PartialEq for StashFlagsfn eq(&self, other: &StashFlags) -> bool
fn eq(&self, other: &StashFlags) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &StashFlags) -> bool
fn ne(&self, other: &StashFlags) -> boolThis method tests for !=.
impl Eq for StashFlags
impl Eq for StashFlagsimpl Clone for StashFlags
impl Clone for StashFlagsfn clone(&self) -> StashFlags
fn clone(&self) -> StashFlagsReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl PartialOrd for StashFlags
impl PartialOrd for StashFlagsfn partial_cmp(&self, other: &StashFlags) -> Option<Ordering>
fn partial_cmp(&self, other: &StashFlags) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &StashFlags) -> bool
fn lt(&self, other: &StashFlags) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &StashFlags) -> bool
fn le(&self, other: &StashFlags) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &StashFlags) -> bool
fn gt(&self, other: &StashFlags) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &StashFlags) -> bool
fn ge(&self, other: &StashFlags) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for StashFlags
impl Ord for StashFlagsfn cmp(&self, other: &StashFlags) -> Ordering
fn cmp(&self, other: &StashFlags) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl Hash for StashFlags
impl Hash for StashFlagsfn hash<__H: Hasher>(&self, state: &mut __H)
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl Debug for StashFlags
impl Debug for StashFlagsimpl Binary for StashFlags
impl Binary for StashFlagsimpl Octal for StashFlags
impl Octal for StashFlagsimpl LowerHex for StashFlags
impl LowerHex for StashFlagsimpl UpperHex for StashFlags
impl UpperHex for StashFlagsimpl BitOr for StashFlags
impl BitOr for StashFlagstype Output = StashFlags
The resulting type after applying the | operator.
fn bitor(self, other: StashFlags) -> StashFlags
fn bitor(self, other: StashFlags) -> StashFlagsReturns the union of the two sets of flags.
impl BitOrAssign for StashFlags
impl BitOrAssign for StashFlagsfn bitor_assign(&mut self, other: StashFlags)
fn bitor_assign(&mut self, other: StashFlags)Adds the set of flags.
impl BitXor for StashFlags
impl BitXor for StashFlagstype Output = StashFlags
The resulting type after applying the ^ operator.
fn bitxor(self, other: StashFlags) -> StashFlags
fn bitxor(self, other: StashFlags) -> StashFlagsReturns the left flags, but with all the right flags toggled.
impl BitXorAssign for StashFlags
impl BitXorAssign for StashFlagsfn bitxor_assign(&mut self, other: StashFlags)
fn bitxor_assign(&mut self, other: StashFlags)Toggles the set of flags.
impl BitAnd for StashFlags
impl BitAnd for StashFlagstype Output = StashFlags
The resulting type after applying the & operator.
fn bitand(self, other: StashFlags) -> StashFlags
fn bitand(self, other: StashFlags) -> StashFlagsReturns the intersection between the two sets of flags.
impl BitAndAssign for StashFlags
impl BitAndAssign for StashFlagsfn bitand_assign(&mut self, other: StashFlags)
fn bitand_assign(&mut self, other: StashFlags)Disables all flags disabled in the set.
impl Sub for StashFlags
impl Sub for StashFlagstype Output = StashFlags
The resulting type after applying the - operator.
fn sub(self, other: StashFlags) -> StashFlags
fn sub(self, other: StashFlags) -> StashFlagsReturns the set difference of the two sets of flags.
impl SubAssign for StashFlags
impl SubAssign for StashFlagsfn sub_assign(&mut self, other: StashFlags)
fn sub_assign(&mut self, other: StashFlags)Disables all flags enabled in the set.
impl Not for StashFlags
impl Not for StashFlagstype Output = StashFlags
The resulting type after applying the ! operator.
fn not(self) -> StashFlags
fn not(self) -> StashFlagsReturns the complement of this set of flags.
impl Extend<StashFlags> for StashFlags
impl Extend<StashFlags> for StashFlagsfn extend<T: IntoIterator<Item = StashFlags>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = StashFlags>>(&mut self, iterator: T)Extends a collection with the contents of an iterator. Read more
impl FromIterator<StashFlags> for StashFlags
impl FromIterator<StashFlags> for StashFlagsfn from_iter<T: IntoIterator<Item = StashFlags>>(iterator: T) -> StashFlags
fn from_iter<T: IntoIterator<Item = StashFlags>>(iterator: T) -> StashFlagsCreates a value from an iterator. Read more
impl Default for StashFlags[src]
impl Default for StashFlagsAuto Trait Implementations
impl Send for StashFlags
impl Send for StashFlagsimpl Sync for StashFlags
impl Sync for StashFlags