pub struct EComposite {
pub criteria: Vec<ECriterion>,
}Expand description
A composite of evaluation criteria.
Fields§
§criteria: Vec<ECriterion>The list of criteria in this composite.
Implementations§
Trait Implementations§
Source§impl BitOr<ECriterion> for EComposite
impl BitOr<ECriterion> for EComposite
Source§type Output = EComposite
type Output = EComposite
The resulting type after applying the
| operator.Source§impl Clone for EComposite
impl Clone for EComposite
Source§fn clone(&self) -> EComposite
fn clone(&self) -> EComposite
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 moreAuto Trait Implementations§
impl Freeze for EComposite
impl !RefUnwindSafe for EComposite
impl Send for EComposite
impl Sync for EComposite
impl Unpin for EComposite
impl !UnwindSafe for EComposite
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