pub enum EntryValue {
Boolean(bool),
Double(f64),
String(String),
RawData(Vec<u8>),
BooleanArray(Vec<bool>),
DoubleArray(Vec<f64>),
StringArray(Vec<String>),
RpcDefinition(RpcDefinition),
}
Variants§
Boolean(bool)
Double(f64)
String(String)
RawData(Vec<u8>)
BooleanArray(Vec<bool>)
DoubleArray(Vec<f64>)
StringArray(Vec<String>)
RpcDefinition(RpcDefinition)
Implementations§
Source§impl EntryValue
impl EntryValue
pub fn entry_type(&self) -> EntryType
Trait Implementations§
Source§impl Clone for EntryValue
impl Clone for EntryValue
Source§fn clone(&self) -> EntryValue
fn clone(&self) -> EntryValue
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 EntryValue
impl Debug for EntryValue
Source§impl PartialEq for EntryValue
impl PartialEq for EntryValue
impl StructuralPartialEq for EntryValue
Auto Trait Implementations§
impl Freeze for EntryValue
impl RefUnwindSafe for EntryValue
impl Send for EntryValue
impl Sync for EntryValue
impl Unpin for EntryValue
impl UnwindSafe for EntryValue
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