Struct git2::IndexEntryExtendedFlag[]

pub struct IndexEntryExtendedFlag { /* fields omitted */ }

Flags for the extended_flags field of an IndexEntry.

Methods

impl IndexEntryExtendedFlag

INTENT_TO_ADD: IndexEntryExtendedFlag = IndexEntryExtendedFlag{bits: raw::GIT_IDXENTRY_INTENT_TO_ADD as u16,}

An "intent to add" entry from "git add -N"

SKIP_WORKTREE: IndexEntryExtendedFlag = IndexEntryExtendedFlag{bits: raw::GIT_IDXENTRY_SKIP_WORKTREE as u16,}

Skip the associated worktree file, for sparse checkouts

EXTENDED2: IndexEntryExtendedFlag = IndexEntryExtendedFlag{bits: raw::GIT_IDXENTRY_EXTENDED2 as u16,}

Reserved for a future on-disk extended flag

UPDATE: IndexEntryExtendedFlag = IndexEntryExtendedFlag{bits: raw::GIT_IDXENTRY_UPDATE as u16,}

REMOVE: IndexEntryExtendedFlag = IndexEntryExtendedFlag{bits: raw::GIT_IDXENTRY_REMOVE as u16,}

UPTODATE: IndexEntryExtendedFlag = IndexEntryExtendedFlag{bits: raw::GIT_IDXENTRY_UPTODATE as u16,}

ADDED: IndexEntryExtendedFlag = IndexEntryExtendedFlag{bits: raw::GIT_IDXENTRY_ADDED as u16,}

HASHED: IndexEntryExtendedFlag = IndexEntryExtendedFlag{bits: raw::GIT_IDXENTRY_HASHED as u16,}

UNHASHED: IndexEntryExtendedFlag = IndexEntryExtendedFlag{bits: raw::GIT_IDXENTRY_UNHASHED as u16,}

WT_REMOVE: IndexEntryExtendedFlag = IndexEntryExtendedFlag{bits: raw::GIT_IDXENTRY_WT_REMOVE as u16,}

CONFLICTED: IndexEntryExtendedFlag = IndexEntryExtendedFlag{bits: raw::GIT_IDXENTRY_CONFLICTED as u16,}

UNPACKED: IndexEntryExtendedFlag = IndexEntryExtendedFlag{bits: raw::GIT_IDXENTRY_UNPACKED as u16,}

NEW_SKIP_WORKTREE: IndexEntryExtendedFlag = IndexEntryExtendedFlag{bits: raw::GIT_IDXENTRY_NEW_SKIP_WORKTREE as u16,}

Returns an empty set of flags.

Returns the set containing all flags.

Returns the raw value of the flags currently stored.

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

Returns true if no flags are currently stored.

Returns true if all flags are currently set.

Returns true if there are flags common to both self and other.

Returns true all of the flags in other are contained within self.

Inserts the specified flags in-place.

Removes the specified flags in-place.

Toggles the specified flags in-place.

Inserts or removes the specified flags depending on the passed value.

impl IndexEntryExtendedFlag
[src]

Trait Implementations

impl Copy for IndexEntryExtendedFlag

impl PartialEq for IndexEntryExtendedFlag

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for IndexEntryExtendedFlag

impl Clone for IndexEntryExtendedFlag

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialOrd for IndexEntryExtendedFlag

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for IndexEntryExtendedFlag

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl Hash for IndexEntryExtendedFlag

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for IndexEntryExtendedFlag

Formats the value using the given formatter. Read more

impl Binary for IndexEntryExtendedFlag

Formats the value using the given formatter.

impl Octal for IndexEntryExtendedFlag

Formats the value using the given formatter.

impl LowerHex for IndexEntryExtendedFlag

Formats the value using the given formatter.

impl UpperHex for IndexEntryExtendedFlag

Formats the value using the given formatter.

impl BitOr for IndexEntryExtendedFlag

The resulting type after applying the | operator.

Returns the union of the two sets of flags.

impl BitOrAssign for IndexEntryExtendedFlag

Adds the set of flags.

impl BitXor for IndexEntryExtendedFlag

The resulting type after applying the ^ operator.

Returns the left flags, but with all the right flags toggled.

impl BitXorAssign for IndexEntryExtendedFlag

Toggles the set of flags.

impl BitAnd for IndexEntryExtendedFlag

The resulting type after applying the & operator.

Returns the intersection between the two sets of flags.

impl BitAndAssign for IndexEntryExtendedFlag

Disables all flags disabled in the set.

impl Sub for IndexEntryExtendedFlag

The resulting type after applying the - operator.

Returns the set difference of the two sets of flags.

impl SubAssign for IndexEntryExtendedFlag

Disables all flags enabled in the set.

impl Not for IndexEntryExtendedFlag

The resulting type after applying the ! operator.

Returns the complement of this set of flags.

impl Extend<IndexEntryExtendedFlag> for IndexEntryExtendedFlag

Extends a collection with the contents of an iterator. Read more

impl FromIterator<IndexEntryExtendedFlag> for IndexEntryExtendedFlag

Creates a value from an iterator. Read more

Auto Trait Implementations