pub enum CellParseError {
FileReadingFailure,
UnexpectedLength,
UnexpectedValueType,
Invalid,
GetBlockDataFailure,
GetFieldDataFailure,
RequiredSectionMissing,
UnexpectedBlockType((String, String)),
}Variants§
FileReadingFailure
UnexpectedLength
UnexpectedValueType
Invalid
GetBlockDataFailure
GetFieldDataFailure
RequiredSectionMissing
UnexpectedBlockType((String, String))
(expected: String, curr: String)
Trait Implementations§
Source§impl Debug for CellParseError
impl Debug for CellParseError
Source§impl Display for CellParseError
impl Display for CellParseError
Source§impl Error for CellParseError
impl Error for CellParseError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for CellParseError
impl RefUnwindSafe for CellParseError
impl Send for CellParseError
impl Sync for CellParseError
impl Unpin for CellParseError
impl UnsafeUnpin for CellParseError
impl UnwindSafe for CellParseError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more