pub enum EventNotesItemAccidentalDisplayEnclosureSymbol {
Parentheses,
Brackets,
}Expand description
EventNotesItemAccidentalDisplayEnclosureSymbol
JSON schema
{
"type": "string",
"enum": [
"parentheses",
"brackets"
]
}Variants§
Trait Implementations§
Source§impl Clone for EventNotesItemAccidentalDisplayEnclosureSymbol
impl Clone for EventNotesItemAccidentalDisplayEnclosureSymbol
Source§fn clone(&self) -> EventNotesItemAccidentalDisplayEnclosureSymbol
fn clone(&self) -> EventNotesItemAccidentalDisplayEnclosureSymbol
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<'de> Deserialize<'de> for EventNotesItemAccidentalDisplayEnclosureSymbol
impl<'de> Deserialize<'de> for EventNotesItemAccidentalDisplayEnclosureSymbol
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 From<&EventNotesItemAccidentalDisplayEnclosureSymbol> for EventNotesItemAccidentalDisplayEnclosureSymbol
impl From<&EventNotesItemAccidentalDisplayEnclosureSymbol> for EventNotesItemAccidentalDisplayEnclosureSymbol
Source§fn from(value: &EventNotesItemAccidentalDisplayEnclosureSymbol) -> Self
fn from(value: &EventNotesItemAccidentalDisplayEnclosureSymbol) -> Self
Converts to this type from the input type.
Source§impl Ord for EventNotesItemAccidentalDisplayEnclosureSymbol
impl Ord for EventNotesItemAccidentalDisplayEnclosureSymbol
Source§fn cmp(
&self,
other: &EventNotesItemAccidentalDisplayEnclosureSymbol,
) -> Ordering
fn cmp( &self, other: &EventNotesItemAccidentalDisplayEnclosureSymbol, ) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for EventNotesItemAccidentalDisplayEnclosureSymbol
impl PartialEq for EventNotesItemAccidentalDisplayEnclosureSymbol
Source§fn eq(&self, other: &EventNotesItemAccidentalDisplayEnclosureSymbol) -> bool
fn eq(&self, other: &EventNotesItemAccidentalDisplayEnclosureSymbol) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for EventNotesItemAccidentalDisplayEnclosureSymbol
impl PartialOrd for EventNotesItemAccidentalDisplayEnclosureSymbol
Source§impl TryFrom<&String> for EventNotesItemAccidentalDisplayEnclosureSymbol
impl TryFrom<&String> for EventNotesItemAccidentalDisplayEnclosureSymbol
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for EventNotesItemAccidentalDisplayEnclosureSymbol
impl TryFrom<&str> for EventNotesItemAccidentalDisplayEnclosureSymbol
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for EventNotesItemAccidentalDisplayEnclosureSymbol
impl TryFrom<String> for EventNotesItemAccidentalDisplayEnclosureSymbol
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for EventNotesItemAccidentalDisplayEnclosureSymbol
impl Eq for EventNotesItemAccidentalDisplayEnclosureSymbol
impl StructuralPartialEq for EventNotesItemAccidentalDisplayEnclosureSymbol
Auto Trait Implementations§
impl Freeze for EventNotesItemAccidentalDisplayEnclosureSymbol
impl RefUnwindSafe for EventNotesItemAccidentalDisplayEnclosureSymbol
impl Send for EventNotesItemAccidentalDisplayEnclosureSymbol
impl Sync for EventNotesItemAccidentalDisplayEnclosureSymbol
impl Unpin for EventNotesItemAccidentalDisplayEnclosureSymbol
impl UnwindSafe for EventNotesItemAccidentalDisplayEnclosureSymbol
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