Trait conllx::ReadSentence [] [src]

pub trait ReadSentence {
    fn read_sentence(&mut self) -> Result<Option<Sentence>, Error>;
}

A trait for objects that can read CoNLL-X Sentences

Required Methods

Read a Sentence from this object.

Errors

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

Implementors