pub enum AnOperation {
One(u8),
Two(u8),
}
Variants§
Trait Implementations§
Source§impl Clone for AnOperation
impl Clone for AnOperation
Source§fn clone(&self) -> AnOperation
fn clone(&self) -> AnOperation
Returns a copy 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 AnOperation
impl Debug for AnOperation
Source§impl<'de> Deserialize<'de> for AnOperation
impl<'de> Deserialize<'de> for AnOperation
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 Operation for AnOperation
impl Operation for AnOperation
Source§type Output = AnOperationOutput
type Output = AnOperationOutput
Output
assigns the type this request results in.Source§impl PartialEq for AnOperation
impl PartialEq for AnOperation
Source§impl Serialize for AnOperation
impl Serialize for AnOperation
impl StructuralPartialEq for AnOperation
Auto Trait Implementations§
impl Freeze for AnOperation
impl RefUnwindSafe for AnOperation
impl Send for AnOperation
impl Sync for AnOperation
impl Unpin for AnOperation
impl UnwindSafe for AnOperation
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