pub enum StorageCapability {
Sql,
Notes,
Entities,
Graph,
Events,
Vectors,
Sparse,
Text,
Blob,
}Expand description
Identifies which storage capability surface produced an error or is being queried.
Variants§
Sql
Notes
Entities
Graph
Events
Vectors
Sparse
Text
Blob
Content-addressed binary object storage (BlobStore, khive#292).
Trait Implementations§
Source§impl Clone for StorageCapability
impl Clone for StorageCapability
Source§fn clone(&self) -> StorageCapability
fn clone(&self) -> StorageCapability
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 moreimpl Copy for StorageCapability
Source§impl Debug for StorageCapability
impl Debug for StorageCapability
impl Eq for StorageCapability
Source§impl PartialEq for StorageCapability
impl PartialEq for StorageCapability
impl StructuralPartialEq for StorageCapability
Auto Trait Implementations§
impl Freeze for StorageCapability
impl RefUnwindSafe for StorageCapability
impl Send for StorageCapability
impl Sync for StorageCapability
impl Unpin for StorageCapability
impl UnsafeUnpin for StorageCapability
impl UnwindSafe for StorageCapability
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