[][src]Struct vade_evan::platform::rust_logger::RustLogger

pub struct RustLogger {}

Implementations

impl RustLogger[src]

Small Logger plugin implementation. As the Logger trait is currently considered experimental, this plugin will most probably undergo changes in future.

pub fn new() -> RustLogger[src]

Trait Implementations

impl Logger for RustLogger[src]

fn as_any(&self) -> &dyn Any[src]

Cast to Any for downcasting, see https://stackoverflow.com/questions/33687447/how-to-get-a-reference-to-a-concrete-type-from-a-trait-object.

fn log(&self, message: &str, level: Option<&str>)[src]

Logs given message with given level.

Arguments

  • message - message to log
  • level - optional arguments for logging level, levels may differ based on environment

Auto Trait Implementations

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> Same<T> for T

type Output = T

Should always be Self

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>,