pub enum StoreResult {
Item(Option<Item>),
Items(SearchResult),
Namespaces(Vec<String>),
None,
}Expand description
Store operation result
Variants§
Item(Option<Item>)
Single item result
Items(SearchResult)
Multiple items result
Namespaces(Vec<String>)
Namespaces result
None
Empty result
Trait Implementations§
Source§impl Clone for StoreResult
impl Clone for StoreResult
Source§fn clone(&self) -> StoreResult
fn clone(&self) -> StoreResult
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 moreAuto Trait Implementations§
impl Freeze for StoreResult
impl RefUnwindSafe for StoreResult
impl Send for StoreResult
impl Sync for StoreResult
impl Unpin for StoreResult
impl UnsafeUnpin for StoreResult
impl UnwindSafe for StoreResult
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