pub struct ColumnValue(/* private fields */);Expand description
A wide-column value payload.
Implementations§
Trait Implementations§
Source§impl AsRef<str> for ColumnValue
impl AsRef<str> for ColumnValue
Source§impl Clone for ColumnValue
impl Clone for ColumnValue
Source§fn clone(&self) -> ColumnValue
fn clone(&self) -> ColumnValue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ColumnValue
impl Debug for ColumnValue
Source§impl Default for ColumnValue
impl Default for ColumnValue
Source§fn default() -> ColumnValue
fn default() -> ColumnValue
Returns the “default value” for a type. Read more
Source§impl Display for ColumnValue
impl Display for ColumnValue
Source§impl From<&str> for ColumnValue
impl From<&str> for ColumnValue
Source§fn from(value: &str) -> ColumnValue
fn from(value: &str) -> ColumnValue
Converts to this type from the input type.
Source§impl From<String> for ColumnValue
impl From<String> for ColumnValue
Source§fn from(value: String) -> ColumnValue
fn from(value: String) -> ColumnValue
Converts to this type from the input type.
Source§impl Hash for ColumnValue
impl Hash for ColumnValue
Source§impl Ord for ColumnValue
impl Ord for ColumnValue
Source§fn cmp(&self, other: &ColumnValue) -> Ordering
fn cmp(&self, other: &ColumnValue) -> Ordering
1.21.0 (const: unstable) · 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 ColumnValue
impl PartialEq for ColumnValue
Source§fn eq(&self, other: &ColumnValue) -> bool
fn eq(&self, other: &ColumnValue) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ColumnValue
impl PartialOrd for ColumnValue
impl Eq for ColumnValue
impl StructuralPartialEq for ColumnValue
Auto Trait Implementations§
impl Freeze for ColumnValue
impl RefUnwindSafe for ColumnValue
impl Send for ColumnValue
impl Sync for ColumnValue
impl Unpin for ColumnValue
impl UnsafeUnpin for ColumnValue
impl UnwindSafe for ColumnValue
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