pub struct IndexContent {
pub index_name: String,
pub index_uuid: String,
pub columns: Vec<String>,
pub status: String,
}
Fields§
§index_name: String
Name of the index
index_uuid: String
Unique identifier for the index
columns: Vec<String>
Columns covered by this index
status: String
Current status of the index
Implementations§
Trait Implementations§
Source§impl Clone for IndexContent
impl Clone for IndexContent
Source§fn clone(&self) -> IndexContent
fn clone(&self) -> IndexContent
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 IndexContent
impl Debug for IndexContent
Source§impl Default for IndexContent
impl Default for IndexContent
Source§fn default() -> IndexContent
fn default() -> IndexContent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IndexContent
impl<'de> Deserialize<'de> for IndexContent
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 IndexContent
impl PartialEq for IndexContent
Source§impl Serialize for IndexContent
impl Serialize for IndexContent
impl StructuralPartialEq for IndexContent
Auto Trait Implementations§
impl Freeze for IndexContent
impl RefUnwindSafe for IndexContent
impl Send for IndexContent
impl Sync for IndexContent
impl Unpin for IndexContent
impl UnwindSafe for IndexContent
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