Skip to main content

OutputSink

Trait OutputSink 

Source
pub trait OutputSink:
    Send
    + Sync
    + Debug
    + 'static {
    // Required method
    fn write(&self, values: &[Value]);
}
Expand description

Receives print native arguments. Must not panic or block.

Required Methods§

Source

fn write(&self, values: &[Value])

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§