[][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 direct_display<C: Color, D: Display>(&mut self, v: D) -> Result[src]

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

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

pub fn direct_debug<C: Color, D: Debug>(&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 opt_debug_label<C: Color, D: Debug>(
    &mut self,
    label: &str,
    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]

Auto Trait Implementations

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

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

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

impl<'a, 'b> Unpin for DetailFormatter<'a, 'b> where
    'b: 'a, 

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

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> IntoSql for T[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SetParameter for T

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<V, T> VZip<V> for T where
    V: MultiLane<T>,