pub enum CallSyntax {
Plain,
Method,
DottedInvoke,
Command,
}Variants§
Trait Implementations§
Source§impl Clone for CallSyntax
impl Clone for CallSyntax
Source§fn clone(&self) -> CallSyntax
fn clone(&self) -> CallSyntax
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CallSyntax
impl Debug for CallSyntax
Source§impl<'de> Deserialize<'de> for CallSyntax
impl<'de> Deserialize<'de> for CallSyntax
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 PartialEq for CallSyntax
impl PartialEq for CallSyntax
Source§fn eq(&self, other: &CallSyntax) -> bool
fn eq(&self, other: &CallSyntax) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CallSyntax
impl Serialize for CallSyntax
impl StructuralPartialEq for CallSyntax
Auto Trait Implementations§
impl Freeze for CallSyntax
impl RefUnwindSafe for CallSyntax
impl Send for CallSyntax
impl Sync for CallSyntax
impl Unpin for CallSyntax
impl UnsafeUnpin for CallSyntax
impl UnwindSafe for CallSyntax
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