pub struct TableColumnXml {
pub id: u32,
pub name: String,
pub totals_row_function: Option<String>,
pub totals_row_label: Option<String>,
}Expand description
A single column within a table definition.
Fields§
§id: u32§name: String§totals_row_function: Option<String>§totals_row_label: Option<String>Trait Implementations§
Source§impl Clone for TableColumnXml
impl Clone for TableColumnXml
Source§fn clone(&self) -> TableColumnXml
fn clone(&self) -> TableColumnXml
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 TableColumnXml
impl Debug for TableColumnXml
Source§impl<'de> Deserialize<'de> for TableColumnXml
impl<'de> Deserialize<'de> for TableColumnXml
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 TableColumnXml
impl PartialEq for TableColumnXml
Source§impl Serialize for TableColumnXml
impl Serialize for TableColumnXml
impl StructuralPartialEq for TableColumnXml
Auto Trait Implementations§
impl Freeze for TableColumnXml
impl RefUnwindSafe for TableColumnXml
impl Send for TableColumnXml
impl Sync for TableColumnXml
impl Unpin for TableColumnXml
impl UnwindSafe for TableColumnXml
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