pub enum SlurSide {
Up,
Down,
}Expand description
SlurSide
JSON schema
{
"type": "string",
"enum": [
"up",
"down"
]
}Variants§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SlurSide
impl<'de> Deserialize<'de> for SlurSide
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 Ord for SlurSide
impl Ord for SlurSide
Source§impl PartialOrd for SlurSide
impl PartialOrd for SlurSide
Source§impl TryFrom<&String> for SlurSide
impl TryFrom<&String> for SlurSide
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for SlurSide
impl TryFrom<&str> for SlurSide
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for SlurSide
impl TryFrom<String> for SlurSide
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for SlurSide
impl Eq for SlurSide
impl StructuralPartialEq for SlurSide
Auto Trait Implementations§
impl Freeze for SlurSide
impl RefUnwindSafe for SlurSide
impl Send for SlurSide
impl Sync for SlurSide
impl Unpin for SlurSide
impl UnwindSafe for SlurSide
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