Enum calamine::XlsxError [−][src]
pub enum XlsxError {
Io(Error),
Zip(ZipError),
Vba(VbaError),
Xml(Error),
Parse(ParseError),
ParseFloat(ParseFloatError),
ParseInt(ParseIntError),
XmlEof(&'static str),
UnexpectedNode(&'static str),
FileNotFound(String),
Alphanumeric(u8),
NumericColumn(u8),
DimensionCount(usize),
CellTAttribute(String),
CellRAttribute,
Unexpected(&'static str),
CellError(String),
}An enum for Xlsx specific errors
Variants
Io(Error)Io error
Zip(ZipError)Zip error
Vba(VbaError)Vba error
Xml(Error)Xml error
Parse(ParseError)Parse error
ParseFloat(ParseFloatError)Float error
ParseInt(ParseIntError)ParseInt error
XmlEof(&'static str)Unexpected end of xml
UnexpectedNode(&'static str)Unexpected node
FileNotFound(String)File not found
Alphanumeric(u8)Expecting alphanumeri character
NumericColumn(u8)Numeric column
DimensionCount(usize)Wrong dimension count
CellTAttribute(String)Cell 't' attribute error
CellRAttributeCell 'r' attribute error
Unexpected(&'static str)Unexpected error
CellError(String)Cell error
Trait Implementations
impl Debug for XlsxError[src]
impl Debug for XlsxErrorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl From<Error> for XlsxError[src]
impl From<Error> for XlsxErrorimpl From<ZipError> for XlsxError[src]
impl From<ZipError> for XlsxErrorimpl From<VbaError> for XlsxError[src]
impl From<VbaError> for XlsxErrorimpl From<Error> for XlsxError[src]
impl From<Error> for XlsxErrorimpl From<ParseError> for XlsxError[src]
impl From<ParseError> for XlsxErrorfn from(e: ParseError) -> XlsxError[src]
fn from(e: ParseError) -> XlsxErrorPerforms the conversion.
impl From<ParseFloatError> for XlsxError[src]
impl From<ParseFloatError> for XlsxErrorfn from(e: ParseFloatError) -> XlsxError[src]
fn from(e: ParseFloatError) -> XlsxErrorPerforms the conversion.
impl From<ParseIntError> for XlsxError[src]
impl From<ParseIntError> for XlsxErrorfn from(e: ParseIntError) -> XlsxError[src]
fn from(e: ParseIntError) -> XlsxErrorPerforms the conversion.
impl From<XlsxError> for Error[src]
impl From<XlsxError> for Error