[][src]Struct sn0int::fmt::DetailFormatter

pub struct DetailFormatter<'a, 'b> { /* fields omitted */ }

Methods

impl<'a, 'b> DetailFormatter<'a, 'b>
[src]

pub fn new(w: &'a mut Formatter<'b>, scoped: bool) -> DetailFormatter<'a, 'b>
[src]

pub fn start_group(&mut self)
[src]

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

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

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

pub fn id<D: Display>(&mut self, v: D) -> Result
[src]

pub fn color<C: Color>(&mut self) -> Result
[src]

pub fn display<C: Color, D: Display>(&mut self, v: D) -> Result
[src]

pub fn debug<C: Color, D: Debug>(&mut self, v: D) -> Result
[src]

pub fn opt_debug<C: Color, D: Debug>(&mut self, v: &Option<D>) -> Result
[src]

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

pub fn child<D: Display>(&mut self, c: D) -> Result
[src]

Trait Implementations

impl<'a, 'b> Write for DetailFormatter<'a, 'b>
[src]

fn write_char(&mut self, c: char) -> Result<(), Error>
1.1.0
[src]

Writes a [char] into this writer, returning whether the write succeeded. Read more

fn write_fmt(&mut self, args: Arguments) -> Result<(), Error>
1.0.0
[src]

Glue for usage of the [write!] macro with implementors of this trait. Read more

Auto Trait Implementations

impl<'a, 'b> !Send for DetailFormatter<'a, 'b>

impl<'a, 'b> !Sync for DetailFormatter<'a, 'b>

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> IntoSql for T
[src]

fn into_sql<T>(self) -> Self::Expression where
    Self: AsExpression<T>, 
[src]

Convert self to an expression for Diesel's query builder. Read more

fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression where
    &'a Self: AsExpression<T>, 
[src]

Convert &self to an expression for Diesel's query builder. Read more

impl<T> Erased for T