pub struct AndCondition {
pub name: String,
pub or_condition: Option<Vec<OrCondition>>,
}Fields§
§name: String§or_condition: Option<Vec<OrCondition>>Implementations§
Source§impl AndCondition
impl AndCondition
Sourcepub fn builder() -> AndConditionBuilder
pub fn builder() -> AndConditionBuilder
Create an instance of AndCondition using the builder syntax
Trait Implementations§
Source§impl Clone for AndCondition
impl Clone for AndCondition
Source§fn clone(&self) -> AndCondition
fn clone(&self) -> AndCondition
Returns a duplicate 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 moreSource§impl Debug for AndCondition
impl Debug for AndCondition
Source§impl<'de> Deserialize<'de> for AndCondition
impl<'de> Deserialize<'de> for AndCondition
Source§fn 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
Auto Trait Implementations§
impl Freeze for AndCondition
impl RefUnwindSafe for AndCondition
impl Send for AndCondition
impl Sync for AndCondition
impl Unpin for AndCondition
impl UnwindSafe for AndCondition
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