pub enum ValueToSerializeValueAdapterError {
TooBig,
TooShort {
size: usize,
},
DeclaredVsActualSizeMismatch {
declared: usize,
actual: usize,
},
InvalidDeclaredSize {
size: i32,
},
}
👎Deprecated since 0.15.1: Legacy serialization API is not type-safe and is going to be removed soon
Expand description
Describes a failure to translate the output of the Value
legacy trait
into an output of the SerializeValue
trait.
Variants§
TooBig
👎Deprecated since 0.15.1: Legacy serialization API is not type-safe and is going to be removed soon
The value is too bit to be serialized as it exceeds the maximum 2GB size limit.
TooShort
👎Deprecated since 0.15.1: Legacy serialization API is not type-safe and is going to be removed soon
Output produced by the Value trait is less than 4 bytes in size and cannot be considered to be a proper CQL-encoded value.
Fields
DeclaredVsActualSizeMismatch
👎Deprecated since 0.15.1: Legacy serialization API is not type-safe and is going to be removed soon
Mismatch between the value size written at the beginning and the actual size of the data appended to the Vec.
Fields
InvalidDeclaredSize
👎Deprecated since 0.15.1: Legacy serialization API is not type-safe and is going to be removed soon
The value size written at the beginning is invalid (it is negative and less than -2).
Trait Implementations§
source§impl Error for ValueToSerializeValueAdapterError
impl Error for ValueToSerializeValueAdapterError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 ValueToSerializeValueAdapterError
impl RefUnwindSafe for ValueToSerializeValueAdapterError
impl Send for ValueToSerializeValueAdapterError
impl Sync for ValueToSerializeValueAdapterError
impl Unpin for ValueToSerializeValueAdapterError
impl UnwindSafe for ValueToSerializeValueAdapterError
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