pub struct TableSlots {
pub header: Option<Vec<TableRow>>,
pub body: Vec<TableRow>,
}
Fields§
§header: Option<Vec<TableRow>>
§body: Vec<TableRow>
Trait Implementations§
Source§impl Clone for TableSlots
impl Clone for TableSlots
Source§fn clone(&self) -> TableSlots
fn clone(&self) -> TableSlots
Returns a copy 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 TableSlots
impl Debug for TableSlots
Source§impl Default for TableSlots
impl Default for TableSlots
Source§fn default() -> TableSlots
fn default() -> TableSlots
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TableSlots
impl<'de> Deserialize<'de> for TableSlots
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 TableSlots
impl PartialEq for TableSlots
Source§impl Serialize for TableSlots
impl Serialize for TableSlots
impl Eq for TableSlots
impl StructuralPartialEq for TableSlots
Auto Trait Implementations§
impl Freeze for TableSlots
impl RefUnwindSafe for TableSlots
impl Send for TableSlots
impl Sync for TableSlots
impl Unpin for TableSlots
impl UnwindSafe for TableSlots
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