pub enum ValueToSerializeCqlAdapterError {
TooBig,
TooShort {
size: usize,
},
DeclaredVsActualSizeMismatch {
declared: usize,
actual: usize,
},
InvalidDeclaredSize {
size: i32,
},
}
Expand description
Describes a failure to translate the output of the Value
legacy trait
into an output of the SerializeCql
trait.
Variants§
TooBig
The value is too bit to be serialized as it exceeds the maximum 2GB size limit.
TooShort
Output produced by the Value trait is less than 4 bytes in size and cannot be considered to be a proper CQL-encoded value.
DeclaredVsActualSizeMismatch
Mismatch between the value size written at the beginning and the actual size of the data appended to the Vec.
InvalidDeclaredSize
The value size written at the beginning is invalid (it is negative and less than -2).
Trait Implementations§
Source§impl Error for ValueToSerializeCqlAdapterError
impl Error for ValueToSerializeCqlAdapterError
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()
Auto Trait Implementations§
impl Freeze for ValueToSerializeCqlAdapterError
impl RefUnwindSafe for ValueToSerializeCqlAdapterError
impl Send for ValueToSerializeCqlAdapterError
impl Sync for ValueToSerializeCqlAdapterError
impl Unpin for ValueToSerializeCqlAdapterError
impl UnwindSafe for ValueToSerializeCqlAdapterError
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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