pub enum IndexFieldType {
SortOrder(i32),
Text(String),
Other(Value),
}
Expand description
Represents the schema for a Parse class, including its fields, CLP, and indexes.
Variants§
Trait Implementations§
Source§impl Clone for IndexFieldType
impl Clone for IndexFieldType
Source§fn clone(&self) -> IndexFieldType
fn clone(&self) -> IndexFieldType
Returns a copy 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 IndexFieldType
impl Debug for IndexFieldType
Source§impl<'de> Deserialize<'de> for IndexFieldType
impl<'de> Deserialize<'de> for IndexFieldType
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 IndexFieldType
impl PartialEq for IndexFieldType
Source§impl Serialize for IndexFieldType
impl Serialize for IndexFieldType
impl StructuralPartialEq for IndexFieldType
Auto Trait Implementations§
impl Freeze for IndexFieldType
impl RefUnwindSafe for IndexFieldType
impl Send for IndexFieldType
impl Sync for IndexFieldType
impl Unpin for IndexFieldType
impl UnwindSafe for IndexFieldType
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