pub enum TeaStoreError {
RuntimeShutdown,
SubscribeTimeout,
SnapshotTimeout,
SnapshotUnavailable,
}Expand description
Errors reading or subscribing to channel-delivered model snapshots.
Variants§
Trait Implementations§
Source§impl Clone for TeaStoreError
impl Clone for TeaStoreError
Source§fn clone(&self) -> TeaStoreError
fn clone(&self) -> TeaStoreError
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 TeaStoreError
impl Debug for TeaStoreError
Source§impl Display for TeaStoreError
impl Display for TeaStoreError
impl Eq for TeaStoreError
Source§impl Error for TeaStoreError
impl Error for TeaStoreError
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 TeaStoreError
impl PartialEq for TeaStoreError
Source§fn eq(&self, other: &TeaStoreError) -> bool
fn eq(&self, other: &TeaStoreError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TeaStoreError
Auto Trait Implementations§
impl Freeze for TeaStoreError
impl RefUnwindSafe for TeaStoreError
impl Send for TeaStoreError
impl Sync for TeaStoreError
impl Unpin for TeaStoreError
impl UnsafeUnpin for TeaStoreError
impl UnwindSafe for TeaStoreError
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