pub trait Decode {
// Required method
fn decode(&self) -> Result<RecordBatch, CodecError>;
}
Expand description
Decode an object from a its wire (protobuf) representation.
pub trait Decode {
// Required method
fn decode(&self) -> Result<RecordBatch, CodecError>;
}
Decode an object from a its wire (protobuf) representation.