pub enum RemoteMethod {
Get,
Head,
Post,
Put,
Delete,
Patch,
}Variants§
Trait Implementations§
Source§impl Clone for RemoteMethod
impl Clone for RemoteMethod
Source§fn clone(&self) -> RemoteMethod
fn clone(&self) -> RemoteMethod
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 RemoteMethod
impl Debug for RemoteMethod
Source§impl Default for RemoteMethod
impl Default for RemoteMethod
Source§fn default() -> RemoteMethod
fn default() -> RemoteMethod
Returns the “default value” for a type. Read more
Source§impl PartialEq for RemoteMethod
impl PartialEq for RemoteMethod
Source§fn eq(&self, other: &RemoteMethod) -> bool
fn eq(&self, other: &RemoteMethod) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for RemoteMethod
impl Eq for RemoteMethod
impl StructuralPartialEq for RemoteMethod
Auto Trait Implementations§
impl Freeze for RemoteMethod
impl RefUnwindSafe for RemoteMethod
impl Send for RemoteMethod
impl Sync for RemoteMethod
impl Unpin for RemoteMethod
impl UnsafeUnpin for RemoteMethod
impl UnwindSafe for RemoteMethod
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