Trait conllx::WriteSentence [] [src]

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

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

Required Methods

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.

Implementors