pub trait Sink {
    fn write(&mut self, v: Value) -> Result<()>;
}

Required Methods

Implementors