pub struct SampleSelector {
pub filter: Option<FilterExpression>,
pub metadata: Vec<MetadataExpression>,
}Expand description
Top-Level-AST der Sample-Selector-Expression.
Fields§
§filter: Option<FilterExpression>Filter-Ausdruck (kann leer sein, wenn nur Metadata).
metadata: Vec<MetadataExpression>Metadata-Ausdruecke (mehrere mit AND verknuepft moeglich).
Trait Implementations§
Source§impl Clone for SampleSelector
impl Clone for SampleSelector
Source§fn clone(&self) -> SampleSelector
fn clone(&self) -> SampleSelector
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 moreSource§impl Debug for SampleSelector
impl Debug for SampleSelector
Source§impl PartialEq for SampleSelector
impl PartialEq for SampleSelector
Source§fn eq(&self, other: &SampleSelector) -> bool
fn eq(&self, other: &SampleSelector) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SampleSelector
impl StructuralPartialEq for SampleSelector
Auto Trait Implementations§
impl Freeze for SampleSelector
impl RefUnwindSafe for SampleSelector
impl Send for SampleSelector
impl Sync for SampleSelector
impl Unpin for SampleSelector
impl UnsafeUnpin for SampleSelector
impl UnwindSafe for SampleSelector
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