pub enum DescribeValue {
Bool(bool),
I64(i64),
U64(u64),
F64(f64),
String(String),
Opaque,
}Expand description
DescribeValue variants.
Variants§
Bool(bool)
Bool variant.
I64(i64)
I64 variant.
U64(u64)
U64 variant.
F64(f64)
F64 variant.
String(String)
String variant.
Opaque
Opaque variant.
Trait Implementations§
Source§impl Clone for DescribeValue
impl Clone for DescribeValue
Source§fn clone(&self) -> DescribeValue
fn clone(&self) -> DescribeValue
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 DescribeValue
impl Debug for DescribeValue
Source§impl PartialEq for DescribeValue
impl PartialEq for DescribeValue
impl StructuralPartialEq for DescribeValue
Auto Trait Implementations§
impl Freeze for DescribeValue
impl RefUnwindSafe for DescribeValue
impl Send for DescribeValue
impl Sync for DescribeValue
impl Unpin for DescribeValue
impl UnsafeUnpin for DescribeValue
impl UnwindSafe for DescribeValue
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