pub enum SpriteError {
ActorNotFound(u64),
MailboxClosed(u64),
StateNotFound(String),
StateTypeMismatch(String),
RequestTimeout,
PoolNotFound(String),
RegistryNotFound(String),
}Variants§
ActorNotFound(u64)
MailboxClosed(u64)
StateNotFound(String)
StateTypeMismatch(String)
RequestTimeout
PoolNotFound(String)
RegistryNotFound(String)
Trait Implementations§
Source§impl Clone for SpriteError
impl Clone for SpriteError
Source§fn clone(&self) -> SpriteError
fn clone(&self) -> SpriteError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SpriteError
impl Debug for SpriteError
Source§impl Display for SpriteError
impl Display for SpriteError
Source§impl Error for SpriteError
impl Error for SpriteError
1.30.0 · 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 PartialEq for SpriteError
impl PartialEq for SpriteError
impl StructuralPartialEq for SpriteError
Auto Trait Implementations§
impl Freeze for SpriteError
impl RefUnwindSafe for SpriteError
impl Send for SpriteError
impl Sync for SpriteError
impl Unpin for SpriteError
impl UnsafeUnpin for SpriteError
impl UnwindSafe for SpriteError
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