pub enum VsaError {
ValueOutOfRange {
value: i64,
min: i64,
max: i64,
},
InvalidHashLength {
expected: usize,
actual: usize,
},
EmptyCollection,
InvalidPackedData,
InvalidValue(String),
}Expand description
Unified error type for VSA operations
Variants§
ValueOutOfRange
Value is outside the valid range for the operation
InvalidHashLength
Hash operation produced unexpected length
EmptyCollection
Operation expected a non-empty collection
InvalidPackedData
Packed data could not be unpacked
InvalidValue(String)
Value cannot be converted to the target type
Trait Implementations§
Source§impl Error for VsaError
impl Error for VsaError
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()
impl Eq for VsaError
impl StructuralPartialEq for VsaError
Auto Trait Implementations§
impl Freeze for VsaError
impl RefUnwindSafe for VsaError
impl Send for VsaError
impl Sync for VsaError
impl Unpin for VsaError
impl UnwindSafe for VsaError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more