pub enum AlgoKitMsgPackError {
SerializationError(Error),
MsgpackEncodingError(Error),
MsgpackDecodingError(Error),
Base64DecodingError(DecodeError),
MsgpackWriteError(String),
UnknownModelError(String),
IoError(String),
ValueWriteError(String),
}
Variants§
SerializationError(Error)
MsgpackEncodingError(Error)
MsgpackDecodingError(Error)
Base64DecodingError(DecodeError)
MsgpackWriteError(String)
UnknownModelError(String)
IoError(String)
ValueWriteError(String)
Trait Implementations§
Source§impl Debug for AlgoKitMsgPackError
impl Debug for AlgoKitMsgPackError
Source§impl Display for AlgoKitMsgPackError
impl Display for AlgoKitMsgPackError
Source§impl Error for AlgoKitMsgPackError
impl Error for AlgoKitMsgPackError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<DecodeError> for AlgoKitMsgPackError
impl From<DecodeError> for AlgoKitMsgPackError
Source§impl From<Error> for AlgoKitMsgPackError
impl From<Error> for AlgoKitMsgPackError
Source§impl From<Error> for AlgoKitMsgPackError
impl From<Error> for AlgoKitMsgPackError
Source§impl From<Error> for AlgoKitMsgPackError
impl From<Error> for AlgoKitMsgPackError
Source§impl From<Error> for AlgoKitMsgPackError
impl From<Error> for AlgoKitMsgPackError
Auto Trait Implementations§
impl Freeze for AlgoKitMsgPackError
impl !RefUnwindSafe for AlgoKitMsgPackError
impl Send for AlgoKitMsgPackError
impl Sync for AlgoKitMsgPackError
impl Unpin for AlgoKitMsgPackError
impl !UnwindSafe for AlgoKitMsgPackError
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