pub struct SampleResult {
pub pass: Vec<bool>,
}Expand description
Per-sample evaluation result from eval_expr.
Fields§
§pass: Vec<bool>true if this sample passes the filter expression.
Trait Implementations§
Source§impl Clone for SampleResult
impl Clone for SampleResult
Source§fn clone(&self) -> SampleResult
fn clone(&self) -> SampleResult
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 moreAuto Trait Implementations§
impl Freeze for SampleResult
impl RefUnwindSafe for SampleResult
impl Send for SampleResult
impl Sync for SampleResult
impl Unpin for SampleResult
impl UnsafeUnpin for SampleResult
impl UnwindSafe for SampleResult
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