[][src]Trait conllu::io::WriteSentence

pub trait WriteSentence {
    fn write_sentence(&mut self, sentence: &Sentence) -> Result<(), Error>;
}

A trait for objects that can write CoNLL-U Sentences.

Required methods

fn write_sentence(&mut self, sentence: &Sentence) -> Result<(), Error>

Write a sentence into this object.

Errors

A call to write_sentence may generate an error to indicate that the operation could not be completed.

Loading content...

Implementors

impl<W> WriteSentence for PartitioningWriter<W> where
    W: WriteSentence
[src]

impl<W: Write> WriteSentence for Writer<W>[src]

Loading content...