Type Alias xml::writer::Result

source ·
pub type Result<T> = Result<T, EmitterError>;
Expand description

A result type yielded by XmlWriter.

Aliased Type§

enum Result<T> {
    Ok(T),
    Err(EmitterError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(EmitterError)

Contains the error value