Enum xcell_core::XErrorKind
source · pub enum XErrorKind {
IOError(String),
TableError(String),
SyntaxError {
message: String,
},
RuntimeError {
message: String,
},
TypeMismatch {
except: String,
current: String,
},
UnknownError,
}
Variants§
Trait Implementations§
source§impl Debug for XErrorKind
impl Debug for XErrorKind
source§impl Default for XErrorKind
impl Default for XErrorKind
source§fn default() -> XErrorKind
fn default() -> XErrorKind
Returns the “default value” for a type. Read more
source§impl From<&Error> for XErrorKind
impl From<&Error> for XErrorKind
source§fn from(e: &Error) -> XErrorKind
fn from(e: &Error) -> XErrorKind
Converts to this type from the input type.
source§impl From<&Error> for XErrorKind
impl From<&Error> for XErrorKind
source§fn from(e: &Error) -> XErrorKind
fn from(e: &Error) -> XErrorKind
Converts to this type from the input type.
source§impl From<&ParseColorError> for XErrorKind
impl From<&ParseColorError> for XErrorKind
source§fn from(e: &ParseColorError) -> XErrorKind
fn from(e: &ParseColorError) -> XErrorKind
Converts to this type from the input type.