pub enum SimpleQueryStringFlags {
MultipleValue(Vec<String>),
SimpleQueryStringFlagValue(String),
}Expand description
SimpleQueryStringFlags
Query flags can be either a single flag or a combination of flags (e.g. OR|AND|PREFIX).
Variants§
Trait Implementations§
Source§impl Clone for SimpleQueryStringFlags
impl Clone for SimpleQueryStringFlags
Source§fn clone(&self) -> SimpleQueryStringFlags
fn clone(&self) -> SimpleQueryStringFlags
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 SimpleQueryStringFlags
impl Debug for SimpleQueryStringFlags
Source§impl<'de> Deserialize<'de> for SimpleQueryStringFlags
impl<'de> Deserialize<'de> for SimpleQueryStringFlags
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SimpleQueryStringFlags
impl RefUnwindSafe for SimpleQueryStringFlags
impl Send for SimpleQueryStringFlags
impl Sync for SimpleQueryStringFlags
impl Unpin for SimpleQueryStringFlags
impl UnsafeUnpin for SimpleQueryStringFlags
impl UnwindSafe for SimpleQueryStringFlags
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