Enum Section

Source
pub enum Section<'a> {
    Unchanged {
        lines: Vec<Cow<'a, str>>,
    },
    Changed {
        lines: Vec<SectionChangedLine<'a>>,
    },
    FileMode {
        is_checked: bool,
        mode: FileMode,
    },
    Binary {
        is_checked: bool,
        old_description: Option<Cow<'a, str>>,
        new_description: Option<Cow<'a, str>>,
    },
}
Expand description

A section of a file to be rendered and recorded.

Variants§

§

Unchanged

This section of the file is unchanged and just used for context.

By default, only part of the context will be shown. However, all of the context lines should be provided so that they can be used to globally number the lines correctly.

Fields

§lines: Vec<Cow<'a, str>>

The contents of the lines, including their trailing newline character(s), if any.

§

Changed

This section of the file is changed, and the user needs to select which specific changed lines to record.

Fields

§lines: Vec<SectionChangedLine<'a>>

The contents of the lines, including their trailing newline character(s), if any.

§

FileMode

This indicates that the Unix file mode of the file changed, and that the user needs to accept that mode change or not. This is not part of the “contents” of the file per se, but it’s rendered inline as if it were.

Fields

§is_checked: bool

Whether or not the file mode change was selected for inclusion in the UI.

§mode: FileMode

The mode of the file after these changes.

§

Binary

This file contains binary contents.

Fields

§is_checked: bool

Whether or not the binary contents change was selected for inclusion in the UI.

§old_description: Option<Cow<'a, str>>

The description of the old binary contents, for use in the UI only.

§new_description: Option<Cow<'a, str>>

The description of the new binary contents, for use in the UI only.

Implementations§

Source§

impl Section<'_>

Source

pub fn is_editable(&self) -> bool

Whether or not this section contains user-editable content (as opposed to simply contextual content).

Source

pub fn tristate(&self) -> Tristate

Get the tristate value of this section. If there are no items in this section, returns Tristate::False.

Source

pub fn set_checked(&mut self, checked: bool)

Select or unselect all items in this section.

Source

pub fn toggle_all(&mut self)

Toggle the selection of this section.

Trait Implementations§

Source§

impl<'a> Clone for Section<'a>

Source§

fn clone(&self) -> Section<'a>

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<'a> Debug for Section<'a>

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<'de, 'a> Deserialize<'de> for Section<'a>

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<'a> PartialEq for Section<'a>

Source§

fn eq(&self, other: &Section<'a>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<'a> Serialize for Section<'a>

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<'a> Eq for Section<'a>

Source§

impl<'a> StructuralPartialEq for Section<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for Section<'a>

§

impl<'a> RefUnwindSafe for Section<'a>

§

impl<'a> Send for Section<'a>

§

impl<'a> Sync for Section<'a>

§

impl<'a> Unpin for Section<'a>

§

impl<'a> UnwindSafe for Section<'a>

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

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

Source§

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>,

Source§

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>,

Source§

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.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,