pub enum ManageStateError {
SendError(SendError),
MoveError(MoveError),
UpdateError(String),
}Variants§
Trait Implementations§
Source§impl Debug for ManageStateError
impl Debug for ManageStateError
Source§impl Display for ManageStateError
impl Display for ManageStateError
Source§impl Error for ManageStateError
impl Error for ManageStateError
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<ManageStateError> for RunClientError
impl From<ManageStateError> for RunClientError
Source§fn from(source: ManageStateError) -> Self
fn from(source: ManageStateError) -> Self
Converts to this type from the input type.
Source§impl From<MoveError> for ManageStateError
impl From<MoveError> for ManageStateError
Source§impl From<SendError> for ManageStateError
impl From<SendError> for ManageStateError
Auto Trait Implementations§
impl Freeze for ManageStateError
impl RefUnwindSafe for ManageStateError
impl Send for ManageStateError
impl Sync for ManageStateError
impl Unpin for ManageStateError
impl UnwindSafe for ManageStateError
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