pub struct CollectionIndex {
pub id: String,
pub document_count: u32,
pub fields: Vec<CollectionIndexField>,
pub automatically_chosen_properties: Value,
}Expand description
Collection index information
Fields§
§id: String§document_count: u32§fields: Vec<CollectionIndexField>§automatically_chosen_properties: ValueTrait Implementations§
Source§impl Clone for CollectionIndex
impl Clone for CollectionIndex
Source§fn clone(&self) -> CollectionIndex
fn clone(&self) -> CollectionIndex
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 CollectionIndex
impl Debug for CollectionIndex
Source§impl<'de> Deserialize<'de> for CollectionIndex
impl<'de> Deserialize<'de> for CollectionIndex
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
Auto Trait Implementations§
impl Freeze for CollectionIndex
impl RefUnwindSafe for CollectionIndex
impl Send for CollectionIndex
impl Sync for CollectionIndex
impl Unpin for CollectionIndex
impl UnsafeUnpin for CollectionIndex
impl UnwindSafe for CollectionIndex
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