Enum radicle_surf::diff::LineDiff[][src]

pub enum LineDiff {
    Addition {
        line: Line,
        line_num: u32,
    },
    Deletion {
        line: Line,
        line_num: u32,
    },
    Context {
        line: Line,
        line_num_old: u32,
        line_num_new: u32,
    },
}

Single line delta. Two of these are need to represented a modified line: one addition and one deletion. Context is also represented with this type.

Variants

Addition

Line added.

Show fields

Fields of Addition

line: Lineline_num: u32
Deletion

Line deleted.

Show fields

Fields of Deletion

line: Lineline_num: u32
Context

Line context.

Show fields

Fields of Context

line: Lineline_num_old: u32line_num_new: u32

Implementations

impl LineDiff[src]

pub fn addition(line: impl Into<Line>, line_num: u32) -> Self[src]

pub fn deletion(line: impl Into<Line>, line_num: u32) -> Self[src]

pub fn context(
    line: impl Into<Line>,
    line_num_old: u32,
    line_num_new: u32
) -> Self
[src]

Trait Implementations

impl Clone for LineDiff[src]

impl Debug for LineDiff[src]

impl Eq for LineDiff[src]

impl PartialEq<LineDiff> for LineDiff[src]

impl StructuralEq for LineDiff[src]

impl StructuralPartialEq for LineDiff[src]

impl<'a> TryFrom<DiffLine<'a>> for LineDiff[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Conv for T

impl<T> Conv for T

impl<T> FmtForward for T

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> TryConv for T

impl<T> TryConv for T

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.