Struct AsyncSyslogShared

Source
pub struct AsyncSyslogShared<F: SyslogFormatter + Sync> { /* private fields */ }
Expand description

A common instance which describes the syslog state

Implementations§

Source§

impl<F: SyslogFormatter + Sync> AsyncSyslogShared<F>

Source

pub async fn openlog( ident: Option<&str>, logstat: LogStat, facility: LogFacility, net_tap: TapTypeData, ) -> SyRes<AsyncSyslogShared<F>>

Trait Implementations§

Source§

impl<F: SyslogFormatter + Sync> AsyncSyslogApi for AsyncSyslogShared<F>

Source§

fn connectlog<'life0, 'async_trait>( &'life0 mut self, ) -> Pin<Box<dyn Future<Output = SyRes<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Requests to connect to remote server.
Source§

fn setlogmask<'life0, 'async_trait>( &'life0 self, logmask: i32, ) -> Pin<Box<dyn Future<Output = SyRes<i32>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Sets the logmask to filter out the syslog calls. Read more
Source§

fn closelog<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = SyRes<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Closes connection to the syslog server
Source§

fn syslog<'life0, 'async_trait>( &'life0 self, pri: Priority, fmt: String, ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Similar to libc, syslog() sends data to syslog server. Read more
Source§

fn vsyslog<'life0, 'life1, 'async_trait>( &'life0 self, pri: Priority, fmt: &'life1 str, ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Sends message to syslog (same as syslog).
Source§

fn change_identity<'life0, 'life1, 'async_trait>( &'life0 self, ident: &'life1 str, ) -> Pin<Box<dyn Future<Output = SyRes<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

This function can be used to update the facility name, for example after fork(). Read more
Source§

fn reconnect<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = SyRes<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Re-opens the connection to the syslog server. Can be used to rotate logs(handle SIGHUP). Read more
Source§

fn update_tap_data<'life0, 'async_trait>( &'life0 self, tap_data: TapTypeData, ) -> Pin<Box<dyn Future<Output = SyRes<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Updates the instance’s socket. tap_data TapTypeData should be of the same variant (type) as current.
Source§

impl<F: Debug + SyslogFormatter + Sync> Debug for AsyncSyslogShared<F>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<F: SyslogFormatter + Sync> Send for AsyncSyslogShared<F>

Source§

impl<F: SyslogFormatter + Sync> Sync for AsyncSyslogShared<F>

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.