pub struct ScenarioFilter { /* private fields */ }
Expand description
A scenario filter
A scenario filter consists of multiple ScenarioFilterElement
s, each of
which must match for a scenario to be included in the codegen output.
Implementations§
Source§impl ScenarioFilter
impl ScenarioFilter
Sourcepub fn push(&mut self, element: ScenarioFilterElement)
pub fn push(&mut self, element: ScenarioFilterElement)
Add a ScenarioFilterElement
to this filter
Trait Implementations§
Source§impl Clone for ScenarioFilter
impl Clone for ScenarioFilter
Source§fn clone(&self) -> ScenarioFilter
fn clone(&self) -> ScenarioFilter
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 ScenarioFilter
impl RefUnwindSafe for ScenarioFilter
impl Send for ScenarioFilter
impl Sync for ScenarioFilter
impl Unpin for ScenarioFilter
impl UnwindSafe for ScenarioFilter
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