[][src]Struct dqcsim::common::log::callback::LogCallback

pub struct LogCallback {
    pub callback: Box<dyn Fn(&LogRecord) + Send>,
    pub filter: LoglevelFilter,
}

Log callback function structure.

Note the lack of derives; they don't play well with Box<dyn Fn...>... I wonder why. That's primarily why this struct is defined outside SimulatorConfiguration.

Fields

callback: Box<dyn Fn(&LogRecord) + Send>

The callback function to call.

The sole argument is the log message record.

filter: LoglevelFilter

Verbosity level for calling the log callback function.

Implementations

impl LogCallback[src]

pub fn new(
    callback: Box<dyn Fn(&LogRecord) + Send>,
    filter: LoglevelFilter
) -> LogCallback
[src]

Constructs a new LogCallback.

Trait Implementations

impl Debug for LogCallback[src]

impl Log for LogCallback[src]

Auto Trait Implementations

impl !RefUnwindSafe for LogCallback

impl Send for LogCallback

impl !Sync for LogCallback

impl Unpin for LogCallback

impl !UnwindSafe for LogCallback

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,