Enum csml_engine::data::EngineError
source · pub enum EngineError {
Serde(Error),
Io(Error),
Utf8(Utf8Error),
Manager(String),
Format(String),
Interpreter(String),
Parring(String),
Time(SystemTimeError),
Openssl(ErrorStack),
Base64(DecodeError),
}
Variants
Serde(Error)
Io(Error)
Utf8(Utf8Error)
Manager(String)
Format(String)
Interpreter(String)
Parring(String)
Time(SystemTimeError)
Openssl(ErrorStack)
Base64(DecodeError)
Trait Implementations
sourceimpl Debug for EngineError
impl Debug for EngineError
sourceimpl From<DecodeError> for EngineError
impl From<DecodeError> for EngineError
sourcefn from(e: DecodeError) -> Self
fn from(e: DecodeError) -> Self
Converts to this type from the input type.
sourceimpl From<Error> for EngineError
impl From<Error> for EngineError
sourceimpl From<Error> for EngineError
impl From<Error> for EngineError
sourceimpl From<ErrorStack> for EngineError
impl From<ErrorStack> for EngineError
sourcefn from(e: ErrorStack) -> Self
fn from(e: ErrorStack) -> Self
Converts to this type from the input type.
sourceimpl From<SystemTimeError> for EngineError
impl From<SystemTimeError> for EngineError
sourcefn from(e: SystemTimeError) -> Self
fn from(e: SystemTimeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for EngineError
impl Send for EngineError
impl Sync for EngineError
impl Unpin for EngineError
impl !UnwindSafe for EngineError
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