Struct PatchFormatter

Source
pub struct PatchFormatter { /* private fields */ }
Expand description

Struct used to adjust the formatting of a Patch

Implementations§

Source§

impl PatchFormatter

Source

pub fn new() -> Self

Construct a new formatter

Source

pub fn with_color(self) -> Self

Enable formatting a patch with color

Source

pub fn missing_newline_message(self, enable: bool) -> Self

Sets whether to format a patch with a “No newline at end of file” message.

Default is true.

Note: If this is disabled by setting to false, formatted patches will no longer contain sufficient information to determine if a file ended with a newline character (\n) or not and the patch will be formatted as if both the original and modified files ended with a newline character (\n).

Source

pub fn suppress_blank_empty(self, enable: bool) -> Self

Sets whether to suppress printing of a space before empty lines.

Defaults to true.

For more information you can refer to the Omitting trailing blanks manual page of GNU diff or the diff.suppressBlankEmpty config for git-diff.

Source

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

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

Source

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

Trait Implementations§

Source§

impl Debug for PatchFormatter

Source§

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

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

impl Default for PatchFormatter

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

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