SyslogDestination

Trait SyslogDestination 

Source
pub trait SyslogDestination:
    Debug
    + Display
    + Send
    + Clone
    + SyslogDestMsg
    + 'static {
    type SocketTap: SyslogTap<Self>;

    const DEST_TYPE: DestinationType;
}
Expand description

This trait is a common interface for the syslog realization which holds necessary info for compile time initialization and initialization during runtime.

Required Associated Constants§

Required Associated Types§

Source

type SocketTap: SyslogTap<Self>

A provider of the connection to syslog for sync code.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§