Enum qapi_parser::spec::Conditional
source · [−]pub enum Conditional {
Define(ConditionalDefinition),
All {
all: Vec<ConditionalDefinition>,
},
Any {
any: Vec<ConditionalDefinition>,
},
}
Variants
Define(ConditionalDefinition)
All
Fields
all: Vec<ConditionalDefinition>
Any
Fields
any: Vec<ConditionalDefinition>
Trait Implementations
sourceimpl Clone for Conditional
impl Clone for Conditional
sourcefn clone(&self) -> Conditional
fn clone(&self) -> Conditional
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for Conditional
impl Debug for Conditional
sourceimpl<'de> Deserialize<'de> for Conditional
impl<'de> Deserialize<'de> for Conditional
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Hash for Conditional
impl Hash for Conditional
sourceimpl Ord for Conditional
impl Ord for Conditional
sourceimpl PartialEq<Conditional> for Conditional
impl PartialEq<Conditional> for Conditional
sourcefn eq(&self, other: &Conditional) -> bool
fn eq(&self, other: &Conditional) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &Conditional) -> bool
fn ne(&self, other: &Conditional) -> bool
This method tests for !=
.
sourceimpl PartialOrd<Conditional> for Conditional
impl PartialOrd<Conditional> for Conditional
sourcefn partial_cmp(&self, other: &Conditional) -> Option<Ordering>
fn partial_cmp(&self, other: &Conditional) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Eq for Conditional
impl StructuralEq for Conditional
impl StructuralPartialEq for Conditional
Auto Trait Implementations
impl RefUnwindSafe for Conditional
impl Send for Conditional
impl Sync for Conditional
impl Unpin for Conditional
impl UnwindSafe for Conditional
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more