[][src]Struct nixpkgs_fmt::FmtDiff

pub struct FmtDiff { /* fields omitted */ }

The result of formatting.

From this Diff, you can get either the resulting String, or the reformatted syntax node.

Methods

impl FmtDiff[src]

pub fn text_diff(&self) -> Vec<AtomEdit>[src]

Get the diff of deletes and inserts

pub fn has_changes(&self) -> bool[src]

Whether or not formatting did caused any changes

pub fn explain(&self) -> String[src]

pub fn to_node(&self) -> SyntaxNode[src]

Apply the formatting suggestions and return the new node

Trait Implementations

impl Debug for FmtDiff[src]

impl Display for FmtDiff[src]

Auto Trait Implementations

impl !RefUnwindSafe for FmtDiff

impl !Send for FmtDiff

impl !Sync for FmtDiff

impl Unpin for FmtDiff

impl !UnwindSafe for FmtDiff

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> ToString for T where
    T: Display + ?Sized
[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.