pub enum ListValue {
Generic(Vec<PropertyValue>),
String(Vec<Option<String>>),
Bool(Vec<Option<bool>>),
Int64(Vec<Option<i64>>),
Float64(Vec<Option<f64>>),
}Variants§
Generic(Vec<PropertyValue>)
String(Vec<Option<String>>)
Bool(Vec<Option<bool>>)
Int64(Vec<Option<i64>>)
Float64(Vec<Option<f64>>)
Implementations§
Trait Implementations§
impl StructuralPartialEq for ListValue
Auto Trait Implementations§
impl Freeze for ListValue
impl RefUnwindSafe for ListValue
impl Send for ListValue
impl Sync for ListValue
impl Unpin for ListValue
impl UnsafeUnpin for ListValue
impl UnwindSafe for ListValue
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