pub enum Set<'a> {
Filter(FilterSet<'a>),
Union(UnionSet<'a>),
}Expand description
Variants§
Filter(FilterSet<'a>)
The standard query statement. See FilterSet.
Union(UnionSet<'a>)
The union block statement. See UnionSet.
Implementations§
Source§impl<'a> Set<'a>
impl<'a> Set<'a>
Sourcepub fn dependencies(&self) -> impl ExactSizeIterator<Item = &Set<'a>>
pub fn dependencies(&self) -> impl ExactSizeIterator<Item = &Set<'a>>
Returns an iterator of sets that must be defined before this one.
Trait Implementations§
Source§impl<'a> Into<Set<'a>> for FilterSetBuilder<'a>
impl<'a> Into<Set<'a>> for FilterSetBuilder<'a>
Source§impl<'a> Into<Set<'a>> for FilterType
impl<'a> Into<Set<'a>> for FilterType
Source§impl<'a> Into<Set<'a>> for UnionSetBuilder<'a>
impl<'a> Into<Set<'a>> for UnionSetBuilder<'a>
impl Eq for Set<'_>
Auto Trait Implementations§
impl<'a> Freeze for Set<'a>
impl<'a> RefUnwindSafe for Set<'a>
impl<'a> Send for Set<'a>
impl<'a> Sync for Set<'a>
impl<'a> Unpin for Set<'a>
impl<'a> UnsafeUnpin for Set<'a>
impl<'a> UnwindSafe for Set<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.