pub struct ColumnList {
pub total: i64,
pub columns: Vec<Value>,
}Expand description
Columns List
Fields§
§total: i64Total number of columns in the given table.
columns: Vec<Value>List of columns.
Implementations§
Trait Implementations§
Source§impl Clone for ColumnList
impl Clone for ColumnList
Source§fn clone(&self) -> ColumnList
fn clone(&self) -> ColumnList
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 ColumnList
impl Debug for ColumnList
Source§impl<'de> Deserialize<'de> for ColumnList
impl<'de> Deserialize<'de> for ColumnList
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 Serialize for ColumnList
impl Serialize for ColumnList
impl Model for ColumnList
Auto Trait Implementations§
impl Freeze for ColumnList
impl RefUnwindSafe for ColumnList
impl Send for ColumnList
impl Sync for ColumnList
impl Unpin for ColumnList
impl UnsafeUnpin for ColumnList
impl UnwindSafe for ColumnList
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