Enum xcell_errors::XErrorKind
source · pub enum XErrorKind {
IOError(String),
TableError(String),
SyntaxError {
message: String,
},
RuntimeError {
message: String,
},
TypeMismatch {
except: String,
current: String,
},
UnknownError,
}
Variants
IOError(String)
TableError(String)
SyntaxError
Fields
message: String
RuntimeError
Fields
message: String
TypeMismatch
UnknownError
Trait Implementations
sourceimpl Debug for XErrorKind
impl Debug for XErrorKind
sourceimpl Default for XErrorKind
impl Default for XErrorKind
sourceimpl From<&Error> for XErrorKind
impl From<&Error> for XErrorKind
sourceimpl From<&Error> for XErrorKind
impl From<&Error> for XErrorKind
sourceimpl From<&ParseColorError> for XErrorKind
impl From<&ParseColorError> for XErrorKind
sourcefn from(e: &ParseColorError) -> Self
fn from(e: &ParseColorError) -> Self
Converts to this type from the input type.
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