[][src]Struct dprint_core::Info

pub struct Info {
    pub name: &'static str,
    // some fields omitted
}

Can be used to get information at a certain location being printed. These can be resolved by providing the info object to a condition context's get_resolved_info(&info) method.

Fields

name: &'static str

Name for debugging purposes.

Methods

impl Info[src]

pub fn new(name: &'static str) -> Info[src]

Trait Implementations

impl Clone for Info[src]

impl InfoRef for Info[src]

impl<TString, TCondition> Into<PrintItem<TString, Info, TCondition>> for Info where
    TString: StringRef,
    TCondition: ConditionRef<TString, Info, TCondition>, 
[src]

Auto Trait Implementations

impl RefUnwindSafe for Info

impl Send for Info

impl Sync for Info

impl Unpin for Info

impl UnwindSafe for Info

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.