[][src]Struct rustfmt_nightly::Session

pub struct Session<'b, T: Write> {
    pub config: Config,
    pub out: Option<&'b mut T>,
    // some fields omitted
}

A session is a run of rustfmt across a single or multiple inputs.

Fields

config: Configout: Option<&'b mut T>

Methods

impl<'b, T: Write + 'b> Session<'b, T>[src]

pub fn new(config: Config, out: Option<&'b mut T>) -> Session<'b, T>[src]

pub fn format(&mut self, input: Input) -> Result<FormatReport, ErrorKind>[src]

The main entry point for Rustfmt. Formats the given input according to the given config. out is only necessary if required by the configuration.

pub fn override_config<F, U>(&mut self, config: Config, f: F) -> U where
    F: FnOnce(&mut Session<'b, T>) -> U, 
[src]

pub fn add_operational_error(&mut self)[src]

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

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

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

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

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

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

Trait Implementations

impl<'b, T: Write + 'b> Drop for Session<'b, T>[src]

Auto Trait Implementations

impl<'b, T> Unpin for Session<'b, T>

impl<'b, T> !Sync for Session<'b, T>

impl<'b, T> !Send for Session<'b, T>

impl<'b, T> !UnwindSafe for Session<'b, T>

impl<'b, T> !RefUnwindSafe for Session<'b, T>

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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

impl<E> SpecializationError for E[src]

impl<T> Erased for T[src]