pub enum RuntimeError {
CompileError(TreeError),
UnImplementedAction(String),
IOError(String),
Unexpected(String),
WrongArgument(String),
Stopped(String),
RecoveryToFailure(Box<RuntimeError>),
BlackBoardError(String),
MultiThreadError(String),
TrimmingError(String),
ExportError(String),
}
Variants§
CompileError(TreeError)
UnImplementedAction(String)
IOError(String)
Unexpected(String)
WrongArgument(String)
Stopped(String)
RecoveryToFailure(Box<RuntimeError>)
BlackBoardError(String)
MultiThreadError(String)
TrimmingError(String)
ExportError(String)
Implementations§
Trait Implementations§
Source§impl Debug for RuntimeError
impl Debug for RuntimeError
Source§impl From<AttrError> for RuntimeError
impl From<AttrError> for RuntimeError
Source§impl From<Error> for RuntimeError
impl From<Error> for RuntimeError
Source§impl From<Error> for RuntimeError
impl From<Error> for RuntimeError
Source§impl From<Error> for RuntimeError
impl From<Error> for RuntimeError
Source§impl From<Error> for RuntimeError
impl From<Error> for RuntimeError
Source§impl From<Error> for RuntimeError
impl From<Error> for RuntimeError
Source§impl From<Error> for RuntimeError
impl From<Error> for RuntimeError
Source§impl From<FromUtf8Error> for RuntimeError
impl From<FromUtf8Error> for RuntimeError
Source§fn from(value: FromUtf8Error) -> Self
fn from(value: FromUtf8Error) -> Self
Converts to this type from the input type.
Source§impl From<JoinError> for RuntimeError
impl From<JoinError> for RuntimeError
Source§impl From<ParseBoolError> for RuntimeError
impl From<ParseBoolError> for RuntimeError
Source§fn from(value: ParseBoolError) -> Self
fn from(value: ParseBoolError) -> Self
Converts to this type from the input type.
Source§impl From<ParseError> for RuntimeError
impl From<ParseError> for RuntimeError
Source§fn from(value: ParseError) -> Self
fn from(value: ParseError) -> Self
Converts to this type from the input type.
Source§impl<T> From<PoisonError<MutexGuard<'_, T>>> for RuntimeError
impl<T> From<PoisonError<MutexGuard<'_, T>>> for RuntimeError
Source§fn from(value: PoisonError<MutexGuard<'_, T>>) -> Self
fn from(value: PoisonError<MutexGuard<'_, T>>) -> Self
Converts to this type from the input type.
Source§impl From<RuntimeError> for TreeError
impl From<RuntimeError> for TreeError
Source§fn from(value: RuntimeError) -> Self
fn from(value: RuntimeError) -> Self
Converts to this type from the input type.
Source§impl From<TreeError> for RuntimeError
impl From<TreeError> for RuntimeError
Source§impl PartialEq for RuntimeError
impl PartialEq for RuntimeError
impl StructuralPartialEq for RuntimeError
Auto Trait Implementations§
impl Freeze for RuntimeError
impl RefUnwindSafe for RuntimeError
impl Send for RuntimeError
impl Sync for RuntimeError
impl Unpin for RuntimeError
impl UnwindSafe for RuntimeError
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more