pub enum MixedState {
Mixed,
}Expand description
The "mixed" literal, as its own type so serde can keep the schema closed.
Variants§
Mixed
The literal "mixed".
Trait Implementations§
Source§impl Clone for MixedState
impl Clone for MixedState
Source§fn clone(&self) -> MixedState
fn clone(&self) -> MixedState
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 moreimpl Copy for MixedState
Source§impl Debug for MixedState
impl Debug for MixedState
Source§impl<'de> Deserialize<'de> for MixedState
impl<'de> Deserialize<'de> for MixedState
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 MixedState
Source§impl PartialEq for MixedState
impl PartialEq for MixedState
Source§impl Serialize for MixedState
impl Serialize for MixedState
impl StructuralPartialEq for MixedState
Auto Trait Implementations§
impl Freeze for MixedState
impl RefUnwindSafe for MixedState
impl Send for MixedState
impl Sync for MixedState
impl Unpin for MixedState
impl UnsafeUnpin for MixedState
impl UnwindSafe for MixedState
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