pub enum CursorValue {
Int(i64),
UInt(u64),
Float(f64),
Bool(bool),
String(String),
}Variants§
Trait Implementations§
Source§impl Clone for CursorValue
impl Clone for CursorValue
Source§fn clone(&self) -> CursorValue
fn clone(&self) -> CursorValue
Returns a duplicate 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 CursorValue
impl Debug for CursorValue
Source§impl From<&str> for CursorValue
impl From<&str> for CursorValue
Source§fn from(value: &str) -> CursorValue
fn from(value: &str) -> CursorValue
Converts to this type from the input type.
Source§impl From<String> for CursorValue
impl From<String> for CursorValue
Source§fn from(value: String) -> CursorValue
fn from(value: String) -> CursorValue
Converts to this type from the input type.
Source§impl From<bool> for CursorValue
impl From<bool> for CursorValue
Source§fn from(value: bool) -> CursorValue
fn from(value: bool) -> CursorValue
Converts to this type from the input type.
Source§impl From<f32> for CursorValue
impl From<f32> for CursorValue
Source§fn from(value: f32) -> CursorValue
fn from(value: f32) -> CursorValue
Converts to this type from the input type.
Source§impl From<f64> for CursorValue
impl From<f64> for CursorValue
Source§fn from(value: f64) -> CursorValue
fn from(value: f64) -> CursorValue
Converts to this type from the input type.
Source§impl From<i32> for CursorValue
impl From<i32> for CursorValue
Source§fn from(value: i32) -> CursorValue
fn from(value: i32) -> CursorValue
Converts to this type from the input type.
Source§impl From<i64> for CursorValue
impl From<i64> for CursorValue
Source§fn from(value: i64) -> CursorValue
fn from(value: i64) -> CursorValue
Converts to this type from the input type.
Source§impl From<u32> for CursorValue
impl From<u32> for CursorValue
Source§fn from(value: u32) -> CursorValue
fn from(value: u32) -> CursorValue
Converts to this type from the input type.
Source§impl From<u64> for CursorValue
impl From<u64> for CursorValue
Source§fn from(value: u64) -> CursorValue
fn from(value: u64) -> CursorValue
Converts to this type from the input type.
Source§impl PartialEq for CursorValue
impl PartialEq for CursorValue
impl StructuralPartialEq for CursorValue
Auto Trait Implementations§
impl Freeze for CursorValue
impl RefUnwindSafe for CursorValue
impl Send for CursorValue
impl Sync for CursorValue
impl Unpin for CursorValue
impl UnwindSafe for CursorValue
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