pub enum MarkerType {
NoMarker,
Unchecked,
Checked,
}Variants§
Trait Implementations§
Source§impl Clone for MarkerType
impl Clone for MarkerType
Source§fn clone(&self) -> MarkerType
fn clone(&self) -> MarkerType
Returns a duplicate 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 MarkerType
impl Debug for MarkerType
Source§impl Default for MarkerType
impl Default for MarkerType
Source§fn default() -> MarkerType
fn default() -> MarkerType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MarkerType
impl<'de> Deserialize<'de> for MarkerType
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<MarkerType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<MarkerType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MarkerType
impl PartialEq for MarkerType
Source§impl Serialize for MarkerType
impl Serialize for MarkerType
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for MarkerType
Auto Trait Implementations§
impl Freeze for MarkerType
impl RefUnwindSafe for MarkerType
impl Send for MarkerType
impl Sync for MarkerType
impl Unpin for MarkerType
impl UnsafeUnpin for MarkerType
impl UnwindSafe for MarkerType
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