pub enum StoreError {
ClientNotConfigured,
ConfigMissing(String),
SerializeError(String),
UnsupportedClient(u64),
}Variants§
ClientNotConfigured
Required client (KVS/InMemory/HTTP/File) is not configured.
ConfigMissing(String)
A required config key (key/url/client) is missing.
SerializeError(String)
JSON serialize error.
UnsupportedClient(u64)
Unsupported client id in config.
Trait Implementations§
Source§impl Debug for StoreError
impl Debug for StoreError
Source§impl Display for StoreError
impl Display for StoreError
Source§impl PartialEq for StoreError
impl PartialEq for StoreError
impl StructuralPartialEq for StoreError
Auto Trait Implementations§
impl Freeze for StoreError
impl RefUnwindSafe for StoreError
impl Send for StoreError
impl Sync for StoreError
impl Unpin for StoreError
impl UnsafeUnpin for StoreError
impl UnwindSafe for StoreError
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