pub trait EncodableTextChunk {
    fn encode<W: Write>(&self, w: &mut W) -> Result<(), EncodingError>;
}
Expand description

A generalized text chunk trait

Required methods

Encode text chunk as Vec to a Write

Implementors