#[non_exhaustive]pub enum ThinkingEnabledType {
Enabled,
}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.
Enabled
Trait Implementations§
Source§impl Clone for ThinkingEnabledType
impl Clone for ThinkingEnabledType
Source§fn clone(&self) -> ThinkingEnabledType
fn clone(&self) -> ThinkingEnabledType
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 ThinkingEnabledType
impl Debug for ThinkingEnabledType
Source§impl<'de> Deserialize<'de> for ThinkingEnabledType
impl<'de> Deserialize<'de> for ThinkingEnabledType
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 ThinkingEnabledType
Source§impl PartialEq for ThinkingEnabledType
impl PartialEq for ThinkingEnabledType
Source§impl Serialize for ThinkingEnabledType
impl Serialize for ThinkingEnabledType
impl StructuralPartialEq for ThinkingEnabledType
Auto Trait Implementations§
impl Freeze for ThinkingEnabledType
impl RefUnwindSafe for ThinkingEnabledType
impl Send for ThinkingEnabledType
impl Sync for ThinkingEnabledType
impl Unpin for ThinkingEnabledType
impl UnsafeUnpin for ThinkingEnabledType
impl UnwindSafe for ThinkingEnabledType
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