Enum xml::reader::ErrorKind  
                   
                       [−]
                   
               [src]
pub enum ErrorKind {
    Syntax(Cow<'static, str>),
    Io(Error),
    Utf8(Utf8Error),
    UnexpectedEof,
}Variants
Syntax(Cow<'static, str>)Io(Error)Utf8(Utf8Error)UnexpectedEofTrait Implementations
impl Debug for ErrorKind[src]
impl Clone for ErrorKind[src]
fn clone(&self) -> Self
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl PartialEq for ErrorKind[src]
fn eq(&self, other: &ErrorKind) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.