pub struct FieldValuesConfig {
pub field: String,
pub values: Vec<String>,
}Expand description
A { field: ..., values: [...] } pair used by the in predicate form.
Fields§
§field: String§values: Vec<String>Trait Implementations§
Source§impl Clone for FieldValuesConfig
impl Clone for FieldValuesConfig
Source§fn clone(&self) -> FieldValuesConfig
fn clone(&self) -> FieldValuesConfig
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 FieldValuesConfig
impl Debug for FieldValuesConfig
Source§impl<'de> Deserialize<'de> for FieldValuesConfig
impl<'de> Deserialize<'de> for FieldValuesConfig
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 FieldValuesConfig
impl RefUnwindSafe for FieldValuesConfig
impl Send for FieldValuesConfig
impl Sync for FieldValuesConfig
impl Unpin for FieldValuesConfig
impl UnsafeUnpin for FieldValuesConfig
impl UnwindSafe for FieldValuesConfig
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