[][src]Struct diffy::PatchFormatter

pub struct PatchFormatter { /* fields omitted */ }

Struct used to adjust the formatting of a Patch

Implementations

impl PatchFormatter[src]

pub fn new() -> Self[src]

Construct a new formatter

pub fn with_color(self) -> Self[src]

Enable formatting a patch with color

pub fn fmt_patch<'a>(&'a self, patch: &'a Patch<'a, str>) -> impl Display + 'a[src]

Returns a Display impl which can be used to print a Patch

pub fn write_patch_into<T: ToOwned + AsRef<[u8]> + ?Sized, W: Write>(
    &self,
    patch: &Patch<T>,
    w: W
) -> Result<()>
[src]

Trait Implementations

impl Debug for PatchFormatter[src]

impl Default for PatchFormatter[src]

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> From<T> for T[src]

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

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.