[][src]Enum flexi_logger::writers::SyslogFacility

pub enum SyslogFacility {
    Kernel,
    UserLevel,
    MailSystem,
    SystemDaemons,
    Authorization,
    SyslogD,
    LinePrinter,
    News,
    Uucp,
    Clock,
    Authorization2,
    Ftp,
    Ntp,
    LogAudit,
    LogAlert,
    Clock2,
    LocalUse0,
    LocalUse1,
    LocalUse2,
    LocalUse3,
    LocalUse4,
    LocalUse5,
    LocalUse6,
    LocalUse7,
}

Syslog Facility.

See RFC 5424.

Variants

Kernel

kernel messages.

UserLevel

user-level messages.

MailSystem

mail system.

SystemDaemons

system daemons.

Authorization

security/authorization messages.

SyslogD

messages generated internally by syslogd.

LinePrinter

line printer subsystem.

News

network news subsystem.

Uucp

UUCP subsystem.

Clock

clock daemon.

Authorization2

security/authorization messages.

Ftp

FTP daemon.

Ntp

NTP subsystem.

LogAudit

log audit.

LogAlert

log alert.

Clock2

clock daemon (note 2).

LocalUse0

local use 0 (local0).

LocalUse1

local use 1 (local1).

LocalUse2

local use 2 (local2).

LocalUse3

local use 3 (local3).

LocalUse4

local use 4 (local4).

LocalUse5

local use 5 (local5).

LocalUse6

local use 6 (local6).

LocalUse7

local use 7 (local7).

Trait Implementations

impl Clone for SyslogFacility[src]

impl Copy for SyslogFacility[src]

impl Debug for SyslogFacility[src]

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