pub enum LoadError {
ClientNotFound(String),
ConfigMissing(String),
NotFound(String),
ParseError(String),
}Expand description
Errors from _get store resolution during Context::get.
Variants§
ClientNotFound(String)
Stores::store_for() returned None for the given store_id.
ConfigMissing(String)
A required config key is missing in the manifest.
NotFound(String)
The store call succeeded but returned no data.
ParseError(String)
Parse error from store response.
Trait Implementations§
impl StructuralPartialEq for LoadError
Auto Trait Implementations§
impl Freeze for LoadError
impl RefUnwindSafe for LoadError
impl Send for LoadError
impl Sync for LoadError
impl Unpin for LoadError
impl UnsafeUnpin for LoadError
impl UnwindSafe for LoadError
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