Struct ucd_parse::Error
[−]
[src]
pub struct Error { /* fields omitted */ }Represents any kind of error that can occur while parsing the UCD.
Methods
impl Error[src]
pub fn kind(&self) -> &ErrorKind[src]
Return the specific kind of this error.
pub fn line(&self) -> Option<u64>[src]
Return the line number at which this error occurred, if available.
pub fn into_kind(self) -> ErrorKind[src]
Unwrap this error into its underlying kind.
pub fn is_io_error(&self) -> bool[src]
Returns true if and only if this is an I/O error.
If this returns true, the underlying ErrorKind is guaranteed to be
ErrorKind::Io.
Trait Implementations
impl Debug for Error[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Error for Error[src]
fn description(&self) -> &str[src]
A short description of the error. Read more
fn cause(&self) -> Option<&Error>[src]
The lower-level cause of this error, if any. Read more
impl Display for Error[src]
fn fmt(&self, f: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more