Enum flexi_logger::writers::SyslogConnector[][src]

pub enum SyslogConnector {
    Stream(BufWriter<UnixStream>),
    Datagram(UnixDatagram),
    Udp(UdpSocket),
    Tcp(BufWriter<TcpStream>),
}
Expand description

Helper struct that connects to the syslog and implements Write.

Is used in SyslogWriter::try_new.

Example

    use flexi_logger::writers::SyslogConnector;
   let syslog_connector = SyslogConnector::try_tcp("localhost:7777").unwrap();

Variants

Sends log lines to the syslog via a UnixStream.

Is only available on linux.

Datagram(UnixDatagram)

Sends log lines to the syslog via a UnixDatagram.

Is only available on linux.

Sends log lines to the syslog via UDP.

UDP is fragile and thus discouraged except for local communication.

Sends log lines to the syslog via TCP.

Implementations

Returns a SyslogConnector::Datagram to the specified path.

Is only available on linux.

Returns a SyslogConnector::Stream to the specified path.

Is only available on linux.

Returns a SyslogConnector which sends the log lines via TCP to the specified address.

Errors

std::io::Error if opening the stream fails.

Returns a SyslogConnector which sends log via the fragile UDP protocol from local to server.

Errors

std::io::Error if opening the stream fails.

Trait Implementations

Formats the value using the given formatter. Read more

Write a buffer into this writer, returning how many bytes were written. Read more

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more

Like write, except that it writes from a slice of buffers. Read more

🔬 This is a nightly-only experimental API. (can_vector)

Determines if this Writer has an efficient write_vectored implementation. Read more

Attempts to write an entire buffer into this writer. Read more

🔬 This is a nightly-only experimental API. (write_all_vectored)

Attempts to write multiple buffers into this writer. Read more

Writes a formatted string into this writer, returning any error encountered. Read more

Creates a “by reference” adaptor for this instance of Write. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.