Home
last modified time | relevance | path

Searched defs:EmitterError (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/xml-rs/src/writer/
Demitter.rs19 pub enum EmitterError { enum
38 impl From<io::Error> for EmitterError { implementation
39 fn from(err: io::Error) -> EmitterError { in from()
44 impl fmt::Display for EmitterError { implementation
57 impl Error for EmitterError { implementation
/external/python/pyyaml/yaml/
D_yaml.pyx21 EmitterError = yaml.emitter.EmitterError variable
/external/python/pyyaml/lib/yaml/
Demitter.py14 class EmitterError(YAMLError): class