pub enum VariantValue {
Empty,
Scalar(ScalarValue),
NonScalar(NonScalarValue),
}Expand description
Value of ua::Variant.
Variants§
Trait Implementations§
Source§impl Clone for VariantValue
impl Clone for VariantValue
Source§fn clone(&self) -> VariantValue
fn clone(&self) -> VariantValue
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for VariantValue
impl RefUnwindSafe for VariantValue
impl Send for VariantValue
impl Sync for VariantValue
impl Unpin for VariantValue
impl UnwindSafe for VariantValue
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