pub enum ReplBlockError {
IoError(Error),
Camino(FromPathBufError),
FmtErrror(Error),
SetLoggerError(SetLoggerError),
SerdeJson(Error),
}Variants§
IoError(Error)
I/O error: {0}
Camino(FromPathBufError)
Camino path conversion error: {0}
FmtErrror(Error)
std::fmt::Error
SetLoggerError(SetLoggerError)
SetLoggerError: {0}
SerdeJson(Error)
SerdeJsonError: {0}
Trait Implementations§
Source§impl Debug for ReplBlockError
impl Debug for ReplBlockError
Source§impl Display for ReplBlockError
impl Display for ReplBlockError
Source§impl From<Error> for ReplBlockError
impl From<Error> for ReplBlockError
Source§impl From<Error> for ReplBlockError
impl From<Error> for ReplBlockError
Source§impl From<Error> for ReplBlockError
impl From<Error> for ReplBlockError
Source§fn from(value: SerdeJsonError) -> Self
fn from(value: SerdeJsonError) -> Self
Converts to this type from the input type.
Source§impl From<FromPathBufError> for ReplBlockError
impl From<FromPathBufError> for ReplBlockError
Source§fn from(value: FromPathBufError) -> Self
fn from(value: FromPathBufError) -> Self
Converts to this type from the input type.
Source§impl From<SetLoggerError> for ReplBlockError
impl From<SetLoggerError> for ReplBlockError
Source§fn from(value: SetLoggerError) -> Self
fn from(value: SetLoggerError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ReplBlockError
impl !RefUnwindSafe for ReplBlockError
impl Send for ReplBlockError
impl Sync for ReplBlockError
impl Unpin for ReplBlockError
impl !UnwindSafe for ReplBlockError
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> 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