#[non_exhaustive]pub enum ModelObjectType {
Model,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Model
Trait Implementations§
Source§impl Clone for ModelObjectType
impl Clone for ModelObjectType
Source§fn clone(&self) -> ModelObjectType
fn clone(&self) -> ModelObjectType
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 ModelObjectType
impl Debug for ModelObjectType
Source§impl<'de> Deserialize<'de> for ModelObjectType
impl<'de> Deserialize<'de> for ModelObjectType
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
impl Eq for ModelObjectType
Source§impl PartialEq for ModelObjectType
impl PartialEq for ModelObjectType
Source§impl Serialize for ModelObjectType
impl Serialize for ModelObjectType
impl StructuralPartialEq for ModelObjectType
Auto Trait Implementations§
impl Freeze for ModelObjectType
impl RefUnwindSafe for ModelObjectType
impl Send for ModelObjectType
impl Sync for ModelObjectType
impl Unpin for ModelObjectType
impl UnsafeUnpin for ModelObjectType
impl UnwindSafe for ModelObjectType
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