pub enum CommandRequestMethod {
Put,
Post,
Delete,
}Expand description
Request method of an command.
Variants§
Trait Implementations§
Source§impl Clone for CommandRequestMethod
impl Clone for CommandRequestMethod
Source§fn clone(&self) -> CommandRequestMethod
fn clone(&self) -> CommandRequestMethod
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 CommandRequestMethod
impl Debug for CommandRequestMethod
Source§impl<'de> Deserialize<'de> for CommandRequestMethod
impl<'de> Deserialize<'de> for CommandRequestMethod
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 Hash for CommandRequestMethod
impl Hash for CommandRequestMethod
Source§impl PartialEq for CommandRequestMethod
impl PartialEq for CommandRequestMethod
Source§impl Serialize for CommandRequestMethod
impl Serialize for CommandRequestMethod
impl Copy for CommandRequestMethod
impl Eq for CommandRequestMethod
impl StructuralPartialEq for CommandRequestMethod
Auto Trait Implementations§
impl Freeze for CommandRequestMethod
impl RefUnwindSafe for CommandRequestMethod
impl Send for CommandRequestMethod
impl Sync for CommandRequestMethod
impl Unpin for CommandRequestMethod
impl UnwindSafe for CommandRequestMethod
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