pub struct CollectionIndexField {
pub field_id: String,
pub field_path: String,
pub is_array: bool,
pub field_type: Value,
}Expand description
Collection index field information
Fields§
§field_id: String§field_path: String§is_array: bool§field_type: ValueTrait Implementations§
Source§impl Clone for CollectionIndexField
impl Clone for CollectionIndexField
Source§fn clone(&self) -> CollectionIndexField
fn clone(&self) -> CollectionIndexField
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 CollectionIndexField
impl Debug for CollectionIndexField
Source§impl<'de> Deserialize<'de> for CollectionIndexField
impl<'de> Deserialize<'de> for CollectionIndexField
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 CollectionIndexField
impl RefUnwindSafe for CollectionIndexField
impl Send for CollectionIndexField
impl Sync for CollectionIndexField
impl Unpin for CollectionIndexField
impl UnsafeUnpin for CollectionIndexField
impl UnwindSafe for CollectionIndexField
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