[][src]Struct genco::Formatter

pub struct Formatter<'write> { /* fields omitted */ }

Formatter implementation for write types.

Implementations

impl<'write> Formatter<'write>[src]

pub fn new(write: &mut dyn Write) -> Formatter[src]

Create a new write formatter.

pub fn with_indentation(self, indentation: usize) -> Self[src]

Configure the indentation associated with the formatter.

pub fn write_str(&mut self, s: &str) -> Result[src]

Write the given string.

pub fn new_line(&mut self) -> Result[src]

Push a new line.

pub fn new_line_unless_empty(&mut self) -> Result[src]

Push a new line, unless the current line is empty.

pub fn indent(&mut self)[src]

Increase indentation level.

pub fn unindent(&mut self)[src]

Decrease indentation level.

Trait Implementations

impl<'write> Write for Formatter<'write>[src]

Auto Trait Implementations

impl<'write> !RefUnwindSafe for Formatter<'write>

impl<'write> !Send for Formatter<'write>

impl<'write> !Sync for Formatter<'write>

impl<'write> Unpin for Formatter<'write>

impl<'write> !UnwindSafe for Formatter<'write>

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.