pub enum DataValue {
Tuple(Vec<ElementValue>),
Multimodal(Vec<(String, ElementValue)>),
}Variants§
Tuple(Vec<ElementValue>)
List of element values, each corresponding to an element of the tuple data-schema
Multimodal(Vec<(String, ElementValue)>)
List of element values and their schema names; each name points to one named element of the corresponding
multimodal data-schema.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DataValue
impl RefUnwindSafe for DataValue
impl Send for DataValue
impl Sync for DataValue
impl Unpin for DataValue
impl UnwindSafe for DataValue
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