pub enum OvsdbAtom {
String(String),
Integer(i64),
Real(f64),
Boolean(bool),
Uuid(Uuid),
NamedUuid(String),
}Expand description
Primitive OVSDB Atom types
Variants§
Trait Implementations§
impl StructuralPartialEq for OvsdbAtom
Auto Trait Implementations§
impl Freeze for OvsdbAtom
impl RefUnwindSafe for OvsdbAtom
impl Send for OvsdbAtom
impl Sync for OvsdbAtom
impl Unpin for OvsdbAtom
impl UnwindSafe for OvsdbAtom
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