Struct gix_status::index_as_worktree::Record

source ·
pub struct Record<'index, T, U> {
    pub entry: &'index Entry,
    pub entry_index: usize,
    pub relative_path: &'index BStr,
    pub status: EntryStatus<T, U>,
}
Expand description

A record of a change.

It’s created either if there is a conflict or a change, or both.

Fields§

§entry: &'index Entry

The index entry that is changed.

§entry_index: usize

The index of the entry relative to all entries in the input index.

§relative_path: &'index BStr

The path to the entry.

§status: EntryStatus<T, U>

The status information itself.

Trait Implementations§

source§

impl<'index, T: Clone, U: Clone> Clone for Record<'index, T, U>

source§

fn clone(&self) -> Record<'index, T, U>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'index, T: Debug, U: Debug> Debug for Record<'index, T, U>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'index, T, U> Freeze for Record<'index, T, U>
where U: Freeze, T: Freeze,

§

impl<'index, T, U> RefUnwindSafe for Record<'index, T, U>

§

impl<'index, T, U> Send for Record<'index, T, U>
where U: Send, T: Send,

§

impl<'index, T, U> Sync for Record<'index, T, U>
where U: Sync, T: Sync,

§

impl<'index, T, U> Unpin for Record<'index, T, U>
where U: Unpin, T: Unpin,

§

impl<'index, T, U> UnwindSafe for Record<'index, T, U>
where U: UnwindSafe, T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.