[][src]Struct tracelog::Trace

pub struct Trace { /* fields omitted */ }

Methods

impl Trace[src]

pub fn new<T: Display>(title: T) -> Trace[src]

Provides title to the trace logs

pub fn trace_filter<T: Display>(&mut self, traces_of: T) -> &mut Trace[src]

Filters backtrace based on "|" separated string provided

pub fn info<T: Display>(&mut self, info: T) -> &mut Trace[src]

Any information to be shown inside the log block

pub fn emit(&self)[src]

Emits the trace log

pub fn log<T: Display, U: Display, V: Display>(
    title: T,
    info: U,
    trace_filter: V
)
[src]

Quick log handle

Auto Trait Implementations

impl RefUnwindSafe for Trace

impl Send for Trace

impl Sync for Trace

impl Unpin for Trace

impl UnwindSafe for Trace

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.