pub enum ProjQueryKind {
Exists,
Count {
predicate: String,
count: u32,
},
Where {
predicate: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for ProjQueryKind
impl Clone for ProjQueryKind
Source§fn clone(&self) -> ProjQueryKind
fn clone(&self) -> ProjQueryKind
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 ProjQueryKind
impl Debug for ProjQueryKind
impl Eq for ProjQueryKind
Source§impl PartialEq for ProjQueryKind
impl PartialEq for ProjQueryKind
impl StructuralPartialEq for ProjQueryKind
Auto Trait Implementations§
impl Freeze for ProjQueryKind
impl RefUnwindSafe for ProjQueryKind
impl Send for ProjQueryKind
impl Sync for ProjQueryKind
impl Unpin for ProjQueryKind
impl UnsafeUnpin for ProjQueryKind
impl UnwindSafe for ProjQueryKind
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