pub type Result<T> = Result<T, EmitterError>;
Expand description
A result type yielded by XmlWriter
.
Aliased Type§
enum Result<T> {
Ok(T),
Err(EmitterError),
}
pub type Result<T> = Result<T, EmitterError>;
A result type yielded by XmlWriter
.
enum Result<T> {
Ok(T),
Err(EmitterError),
}