pub struct TableParts {
pub count: Option<u32>,
pub table_parts: Vec<TablePart>,
}Expand description
Table parts container.
Fields§
§count: Option<u32>§table_parts: Vec<TablePart>Trait Implementations§
Source§impl Clone for TableParts
impl Clone for TableParts
Source§fn clone(&self) -> TableParts
fn clone(&self) -> TableParts
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 TableParts
impl Debug for TableParts
Source§impl<'de> Deserialize<'de> for TableParts
impl<'de> Deserialize<'de> for TableParts
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 TableParts
impl PartialEq for TableParts
Source§impl Serialize for TableParts
impl Serialize for TableParts
impl StructuralPartialEq for TableParts
Auto Trait Implementations§
impl Freeze for TableParts
impl RefUnwindSafe for TableParts
impl Send for TableParts
impl Sync for TableParts
impl Unpin for TableParts
impl UnwindSafe for TableParts
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