pub struct ColumnIndexList {
pub total: i64,
pub indexes: Vec<ColumnIndex>,
}Expand description
Column Indexes List
Fields§
§total: i64Total number of indexes that matched your query.
indexes: Vec<ColumnIndex>List of indexes.
Implementations§
Trait Implementations§
Source§impl Clone for ColumnIndexList
impl Clone for ColumnIndexList
Source§fn clone(&self) -> ColumnIndexList
fn clone(&self) -> ColumnIndexList
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 ColumnIndexList
impl Debug for ColumnIndexList
Source§impl<'de> Deserialize<'de> for ColumnIndexList
impl<'de> Deserialize<'de> for ColumnIndexList
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 ColumnIndexList
impl Serialize for ColumnIndexList
impl Model for ColumnIndexList
Auto Trait Implementations§
impl Freeze for ColumnIndexList
impl RefUnwindSafe for ColumnIndexList
impl Send for ColumnIndexList
impl Sync for ColumnIndexList
impl Unpin for ColumnIndexList
impl UnsafeUnpin for ColumnIndexList
impl UnwindSafe for ColumnIndexList
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