pub struct DataFieldDef {
pub name: Option<String>,
pub field_index: u32,
pub subtotal: Option<String>,
pub base_field: Option<i32>,
pub base_item: Option<u32>,
}Expand description
Individual data field definition.
Fields§
§name: Option<String>§field_index: u32§subtotal: Option<String>§base_field: Option<i32>§base_item: Option<u32>Trait Implementations§
Source§impl Clone for DataFieldDef
impl Clone for DataFieldDef
Source§fn clone(&self) -> DataFieldDef
fn clone(&self) -> DataFieldDef
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 moreSource§impl Debug for DataFieldDef
impl Debug for DataFieldDef
Source§impl<'de> Deserialize<'de> for DataFieldDef
impl<'de> Deserialize<'de> for DataFieldDef
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 DataFieldDef
impl PartialEq for DataFieldDef
Source§impl Serialize for DataFieldDef
impl Serialize for DataFieldDef
impl StructuralPartialEq for DataFieldDef
Auto Trait Implementations§
impl Freeze for DataFieldDef
impl RefUnwindSafe for DataFieldDef
impl Send for DataFieldDef
impl Sync for DataFieldDef
impl Unpin for DataFieldDef
impl UnwindSafe for DataFieldDef
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