pub enum CollectionSettings {
CollectionSettingsObj(CollectionSettingsObj),
Null(()),
}
Expand description
Collection settings object. Unused for now.
Variants§
CollectionSettingsObj(CollectionSettingsObj)
Null(())
Trait Implementations§
Source§impl Clone for CollectionSettings
impl Clone for CollectionSettings
Source§fn clone(&self) -> CollectionSettings
fn clone(&self) -> CollectionSettings
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 CollectionSettings
impl Debug for CollectionSettings
Source§impl<'de> Deserialize<'de> for CollectionSettings
impl<'de> Deserialize<'de> for CollectionSettings
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 CollectionSettings
impl PartialEq for CollectionSettings
Source§impl Serialize for CollectionSettings
impl Serialize for CollectionSettings
impl StructuralPartialEq for CollectionSettings
Auto Trait Implementations§
impl Freeze for CollectionSettings
impl RefUnwindSafe for CollectionSettings
impl Send for CollectionSettings
impl Sync for CollectionSettings
impl Unpin for CollectionSettings
impl UnwindSafe for CollectionSettings
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