pub struct SyslogTransport { /* private fields */ }Expand description
Syslog transport implementation
Implementations§
Source§impl SyslogTransport
impl SyslogTransport
Sourcepub fn new(
host: String,
port: u16,
protocol: String,
facility: SyslogFacility,
tag: String,
) -> Self
pub fn new( host: String, port: u16, protocol: String, facility: SyslogFacility, tag: String, ) -> Self
Create a new syslog transport
§Arguments
host- Syslog server hostname or IP addressport- Syslog server port (typically 514)protocol- Transport protocol (“udp” or “tcp”)facility- Syslog facility codetag- Application tag/name
Trait Implementations§
Source§impl SiemTransport for SyslogTransport
impl SiemTransport for SyslogTransport
Auto Trait Implementations§
impl Freeze for SyslogTransport
impl RefUnwindSafe for SyslogTransport
impl Send for SyslogTransport
impl Sync for SyslogTransport
impl Unpin for SyslogTransport
impl UnwindSafe for SyslogTransport
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more