pub enum ConditionType {
All,
Any,
}Expand description
Type of condition combination.
Variants§
Trait Implementations§
Source§impl Clone for ConditionType
impl Clone for ConditionType
Source§fn clone(&self) -> ConditionType
fn clone(&self) -> ConditionType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ConditionType
Source§impl Debug for ConditionType
impl Debug for ConditionType
Source§impl Default for ConditionType
impl Default for ConditionType
Source§fn default() -> ConditionType
fn default() -> ConditionType
Returns the “default value” for a type. Read more
impl Eq for ConditionType
Source§impl PartialEq for ConditionType
impl PartialEq for ConditionType
Source§fn eq(&self, other: &ConditionType) -> bool
fn eq(&self, other: &ConditionType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ConditionType
Auto Trait Implementations§
impl Freeze for ConditionType
impl RefUnwindSafe for ConditionType
impl Send for ConditionType
impl Sync for ConditionType
impl Unpin for ConditionType
impl UnsafeUnpin for ConditionType
impl UnwindSafe for ConditionType
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