pub enum VectorEntriesError {
Storage(StorageError),
ExactRetrieval(ExactRetrievalError),
}Expand description
Failure while reading a vector space under an explicit end-to-end retrieval deadline.
Variants§
Storage(StorageError)
Ordinary durable storage failure.
ExactRetrieval(ExactRetrievalError)
The exact-retrieval deadline expired.
Trait Implementations§
Source§impl Debug for VectorEntriesError
impl Debug for VectorEntriesError
Source§impl Display for VectorEntriesError
impl Display for VectorEntriesError
Source§impl Error for VectorEntriesError
impl Error for VectorEntriesError
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 From<ExactRetrievalError> for VectorEntriesError
impl From<ExactRetrievalError> for VectorEntriesError
Source§fn from(source: ExactRetrievalError) -> Self
fn from(source: ExactRetrievalError) -> Self
Converts to this type from the input type.
Source§impl From<MaterializedIndexError> for VectorEntriesError
impl From<MaterializedIndexError> for VectorEntriesError
Source§fn from(source: MaterializedIndexError) -> Self
fn from(source: MaterializedIndexError) -> Self
Converts to this type from the input type.
Source§impl From<StorageError> for VectorEntriesError
impl From<StorageError> for VectorEntriesError
Source§fn from(source: StorageError) -> Self
fn from(source: StorageError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for VectorEntriesError
impl !UnwindSafe for VectorEntriesError
impl Freeze for VectorEntriesError
impl Send for VectorEntriesError
impl Sync for VectorEntriesError
impl Unpin for VectorEntriesError
impl UnsafeUnpin for VectorEntriesError
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