pub enum SingleQuery {
SinglePart(SinglePartQuery),
MultiPart(MultiPartQuery),
}Variants§
SinglePart(SinglePartQuery)
MultiPart(MultiPartQuery)
Trait Implementations§
Source§impl Clone for SingleQuery
impl Clone for SingleQuery
Source§fn clone(&self) -> SingleQuery
fn clone(&self) -> SingleQuery
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 SingleQuery
impl RefUnwindSafe for SingleQuery
impl Send for SingleQuery
impl Sync for SingleQuery
impl Unpin for SingleQuery
impl UnsafeUnpin for SingleQuery
impl UnwindSafe for SingleQuery
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