Enum xcell_errors::XErrorKind
source · pub enum XErrorKind {
IOError(String),
SyntaxError {
message: String,
},
TableError(String),
TypeMismatch {
except: String,
current: String,
},
UnknownError,
}
Variants
IOError(String)
SyntaxError
Fields
message: String
TableError(String)
TypeMismatch
UnknownError
Trait Implementations
sourceimpl Debug for XErrorKind
impl Debug for XErrorKind
sourceimpl Default for XErrorKind
impl Default for XErrorKind
Auto Trait Implementations
impl RefUnwindSafe for XErrorKind
impl Send for XErrorKind
impl Sync for XErrorKind
impl Unpin for XErrorKind
impl UnwindSafe for XErrorKind
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more