Skip to main content

SyncSink

Trait SyncSink 

Source
pub trait SyncSink {
    // Required methods
    fn name(&self) -> &'static str;
    fn send(&self, batch: &SyncBatch) -> Result<()>;
}

Required Methods§

Source

fn name(&self) -> &'static str

Source

fn send(&self, batch: &SyncBatch) -> Result<()>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§