pub enum ArrayRetrievalError {
NotFound(ArrayType),
DecompressionError(String),
DataTypeSizeMismatch,
}
Expand description
A high level set of failure modes that an operation to retrieve a typed memory buffer
from a [BinaryArrayMap]
might encounter. May also be used to represented conversion
during reading or writing.
Variants§
Trait Implementations§
Source§impl Clone for ArrayRetrievalError
impl Clone for ArrayRetrievalError
Source§fn clone(&self) -> ArrayRetrievalError
fn clone(&self) -> ArrayRetrievalError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ArrayRetrievalError
impl Debug for ArrayRetrievalError
Source§impl Display for ArrayRetrievalError
impl Display for ArrayRetrievalError
Source§impl Error for ArrayRetrievalError
impl Error for ArrayRetrievalError
1.30.0 · 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<ArrayRetrievalError> for SpectrumConversionError
impl From<ArrayRetrievalError> for SpectrumConversionError
Source§fn from(source: ArrayRetrievalError) -> SpectrumConversionError
fn from(source: ArrayRetrievalError) -> SpectrumConversionError
Converts to this type from the input type.
Source§impl From<ArrayRetrievalError> for SpectrumProcessingError
impl From<ArrayRetrievalError> for SpectrumProcessingError
Source§fn from(source: ArrayRetrievalError) -> SpectrumProcessingError
fn from(source: ArrayRetrievalError) -> SpectrumProcessingError
Converts to this type from the input type.
Source§impl From<PodCastError> for ArrayRetrievalError
impl From<PodCastError> for ArrayRetrievalError
Source§fn from(value: PodCastError) -> ArrayRetrievalError
fn from(value: PodCastError) -> ArrayRetrievalError
Converts to this type from the input type.
Source§impl PartialEq for ArrayRetrievalError
impl PartialEq for ArrayRetrievalError
impl StructuralPartialEq for ArrayRetrievalError
Auto Trait Implementations§
impl Freeze for ArrayRetrievalError
impl RefUnwindSafe for ArrayRetrievalError
impl Send for ArrayRetrievalError
impl Sync for ArrayRetrievalError
impl Unpin for ArrayRetrievalError
impl UnwindSafe for ArrayRetrievalError
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