pub struct TableFieldFromSchema {
pub table: String,
pub parent_key: Option<String>,
pub child_key: Option<String>,
pub value_field: Option<String>,
pub order_by: Option<String>,
}Fields§
§table: String§parent_key: Option<String>§child_key: Option<String>§value_field: Option<String>§order_by: Option<String>Trait Implementations§
Source§impl Clone for TableFieldFromSchema
impl Clone for TableFieldFromSchema
Source§fn clone(&self) -> TableFieldFromSchema
fn clone(&self) -> TableFieldFromSchema
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 TableFieldFromSchema
impl Debug for TableFieldFromSchema
Source§impl<'de> Deserialize<'de> for TableFieldFromSchema
impl<'de> Deserialize<'de> for TableFieldFromSchema
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
Source§impl PartialEq for TableFieldFromSchema
impl PartialEq for TableFieldFromSchema
Source§fn eq(&self, other: &TableFieldFromSchema) -> bool
fn eq(&self, other: &TableFieldFromSchema) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for TableFieldFromSchema
impl StructuralPartialEq for TableFieldFromSchema
Auto Trait Implementations§
impl Freeze for TableFieldFromSchema
impl RefUnwindSafe for TableFieldFromSchema
impl Send for TableFieldFromSchema
impl Sync for TableFieldFromSchema
impl Unpin for TableFieldFromSchema
impl UnsafeUnpin for TableFieldFromSchema
impl UnwindSafe for TableFieldFromSchema
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