pub trait FluentClient: Send + Sync {
// Required methods
fn send(&self, tag: &str, record: Map) -> Result<(), SendError>;
fn stop(self) -> Result<(), SendError>;
}
pub trait FluentClient: Send + Sync {
// Required methods
fn send(&self, tag: &str, record: Map) -> Result<(), SendError>;
fn stop(self) -> Result<(), SendError>;
}