pub enum LinkMethod {
Get,
Post,
Put,
Delete,
Head,
Connect,
Options,
Patch,
}
Variants§
Trait Implementations§
Source§impl Clone for LinkMethod
impl Clone for LinkMethod
Source§fn clone(&self) -> LinkMethod
fn clone(&self) -> LinkMethod
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 LinkMethod
impl Debug for LinkMethod
Source§impl<'de> Deserialize<'de> for LinkMethod
impl<'de> Deserialize<'de> for LinkMethod
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 LinkMethod
impl PartialEq for LinkMethod
Source§impl Serialize for LinkMethod
impl Serialize for LinkMethod
impl Copy for LinkMethod
impl Eq for LinkMethod
impl StructuralPartialEq for LinkMethod
Auto Trait Implementations§
impl Freeze for LinkMethod
impl RefUnwindSafe for LinkMethod
impl Send for LinkMethod
impl Sync for LinkMethod
impl Unpin for LinkMethod
impl UnwindSafe for LinkMethod
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