Struct scylla::frame::value::ValueTooBig
source ยท pub struct ValueTooBig;
๐Deprecated since 0.15.1: Legacy serialization API is not type-safe and is going to be removed soon
Trait Implementationsยง
sourceยงimpl Clone for ValueTooBig
impl Clone for ValueTooBig
sourceยงfn clone(&self) -> ValueTooBig
fn clone(&self) -> ValueTooBig
Returns a copy 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 ValueTooBig
impl Debug for ValueTooBig
sourceยงimpl Display for ValueTooBig
impl Display for ValueTooBig
sourceยงimpl Error for ValueTooBig
impl Error for ValueTooBig
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()
sourceยงimpl From<ValueTooBig> for SerializeValuesError
impl From<ValueTooBig> for SerializeValuesError
sourceยงfn from(source: ValueTooBig) -> SerializeValuesError
fn from(source: ValueTooBig) -> SerializeValuesError
Converts to this type from the input type.
sourceยงimpl Ord for ValueTooBig
impl Ord for ValueTooBig
sourceยงfn cmp(&self, other: &ValueTooBig) -> Ordering
fn cmp(&self, other: &ValueTooBig) -> Ordering
1.21.0 ยท sourceยงfn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
sourceยงimpl PartialEq for ValueTooBig
impl PartialEq for ValueTooBig
sourceยงfn eq(&self, other: &ValueTooBig) -> bool
fn eq(&self, other: &ValueTooBig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.sourceยงimpl PartialOrd for ValueTooBig
impl PartialOrd for ValueTooBig
sourceยงfn partial_cmp(&self, other: &ValueTooBig) -> Option<Ordering>
fn partial_cmp(&self, other: &ValueTooBig) -> Option<Ordering>
1.0.0 ยท sourceยงfn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for ValueTooBig
impl Eq for ValueTooBig
impl StructuralPartialEq for ValueTooBig
Auto Trait Implementationsยง
impl Freeze for ValueTooBig
impl RefUnwindSafe for ValueTooBig
impl Send for ValueTooBig
impl Sync for ValueTooBig
impl Unpin for ValueTooBig
impl UnwindSafe for ValueTooBig
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: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
sourceยงunsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
๐ฌThis is a nightly-only experimental API. (
clone_to_uninit
)sourceยงimpl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
sourceยงdefault unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
๐ฌThis is a nightly-only experimental API. (
clone_to_uninit
)sourceยงimpl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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