pub struct QueryFieldDto {
pub name: String,
pub value_type: String,
pub multiple: bool,
pub required: bool,
pub default: Option<String>,
}Fields§
§name: String§value_type: String§multiple: bool§required: bool§default: Option<String>Trait Implementations§
Source§impl Clone for QueryFieldDto
impl Clone for QueryFieldDto
Source§fn clone(&self) -> QueryFieldDto
fn clone(&self) -> QueryFieldDto
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 QueryFieldDto
impl Debug for QueryFieldDto
Source§impl<'de> Deserialize<'de> for QueryFieldDto
impl<'de> Deserialize<'de> for QueryFieldDto
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
impl Eq for QueryFieldDto
Source§impl PartialEq for QueryFieldDto
impl PartialEq for QueryFieldDto
Source§impl Serialize for QueryFieldDto
impl Serialize for QueryFieldDto
impl StructuralPartialEq for QueryFieldDto
Auto Trait Implementations§
impl Freeze for QueryFieldDto
impl RefUnwindSafe for QueryFieldDto
impl Send for QueryFieldDto
impl Sync for QueryFieldDto
impl Unpin for QueryFieldDto
impl UnsafeUnpin for QueryFieldDto
impl UnwindSafe for QueryFieldDto
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