pub enum EventSlursItemLineType {
    Dashed,
    Dotted,
    Solid,
    Wavy,
}Expand description
EventSlursItemLineType
JSON schema
{
 "type": "string",
 "enum": [
   "dashed",
   "dotted",
   "solid",
   "wavy"
 ]
}Variants§
Trait Implementations§
Source§impl Clone for EventSlursItemLineType
 
impl Clone for EventSlursItemLineType
Source§fn clone(&self) -> EventSlursItemLineType
 
fn clone(&self) -> EventSlursItemLineType
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 EventSlursItemLineType
 
impl Debug for EventSlursItemLineType
Source§impl<'de> Deserialize<'de> for EventSlursItemLineType
 
impl<'de> Deserialize<'de> for EventSlursItemLineType
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 Display for EventSlursItemLineType
 
impl Display for EventSlursItemLineType
Source§impl From<&EventSlursItemLineType> for EventSlursItemLineType
 
impl From<&EventSlursItemLineType> for EventSlursItemLineType
Source§fn from(value: &EventSlursItemLineType) -> Self
 
fn from(value: &EventSlursItemLineType) -> Self
Converts to this type from the input type.
Source§impl FromStr for EventSlursItemLineType
 
impl FromStr for EventSlursItemLineType
Source§impl Hash for EventSlursItemLineType
 
impl Hash for EventSlursItemLineType
Source§impl Ord for EventSlursItemLineType
 
impl Ord for EventSlursItemLineType
Source§fn cmp(&self, other: &EventSlursItemLineType) -> Ordering
 
fn cmp(&self, other: &EventSlursItemLineType) -> 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 EventSlursItemLineType
 
impl PartialEq for EventSlursItemLineType
Source§impl PartialOrd for EventSlursItemLineType
 
impl PartialOrd for EventSlursItemLineType
Source§impl Serialize for EventSlursItemLineType
 
impl Serialize for EventSlursItemLineType
Source§impl TryFrom<&String> for EventSlursItemLineType
 
impl TryFrom<&String> for EventSlursItemLineType
Source§type Error = ConversionError
 
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for EventSlursItemLineType
 
impl TryFrom<&str> for EventSlursItemLineType
Source§type Error = ConversionError
 
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for EventSlursItemLineType
 
impl TryFrom<String> for EventSlursItemLineType
Source§type Error = ConversionError
 
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for EventSlursItemLineType
impl Eq for EventSlursItemLineType
impl StructuralPartialEq for EventSlursItemLineType
Auto Trait Implementations§
impl Freeze for EventSlursItemLineType
impl RefUnwindSafe for EventSlursItemLineType
impl Send for EventSlursItemLineType
impl Sync for EventSlursItemLineType
impl Unpin for EventSlursItemLineType
impl UnwindSafe for EventSlursItemLineType
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