[][src]Struct ashtlog::LogNode

pub struct LogNode<'n, R> { /* fields omitted */ }

Implementations

impl<'n, R> LogNode<'n, R>[src]

pub fn new(backend: &'n R) -> Self[src]

pub fn child_shared<'a>(
    self: &'a LogNode<'n, R>,
    name: &'a str
) -> LogNode<'a, R>
[src]

impl<'n, R: LogBackend> LogNode<'n, R>[src]

pub fn put(&mut self, entry: Arguments<'_>)[src]

pub fn child<'a>(
    self: &'a mut LogNode<'n, R>,
    entry: Arguments<'_>
) -> LogNode<'a, R>
[src]

Trait Implementations

impl<'n, R: Debug> Debug for LogNode<'n, R>[src]

Auto Trait Implementations

impl<'n, R> RefUnwindSafe for LogNode<'n, R> where
    R: RefUnwindSafe

impl<'n, R> Send for LogNode<'n, R> where
    R: Sync

impl<'n, R> Sync for LogNode<'n, R> where
    R: Sync

impl<'n, R> Unpin for LogNode<'n, R>

impl<'n, R> UnwindSafe for LogNode<'n, R> where
    R: RefUnwindSafe

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.