pub enum FetchMethod {
GET,
HEAD,
POST,
PUT,
DELETE,
CONNECT,
OPTIONS,
TRACE,
PATCH,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for FetchMethod
impl Clone for FetchMethod
Source§fn clone(&self) -> FetchMethod
fn clone(&self) -> FetchMethod
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 FetchMethod
impl Debug for FetchMethod
Source§impl Hash for FetchMethod
impl Hash for FetchMethod
Source§impl JsJsonDeserialize for FetchMethod
impl JsJsonDeserialize for FetchMethod
fn from_json(ctx: JsJsonContext, json: JsJson) -> Result<Self, JsJsonContext>
Source§impl JsJsonSerialize for FetchMethod
impl JsJsonSerialize for FetchMethod
Source§impl Ord for FetchMethod
impl Ord for FetchMethod
Source§fn cmp(&self, other: &FetchMethod) -> Ordering
fn cmp(&self, other: &FetchMethod) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for FetchMethod
impl PartialEq for FetchMethod
Source§impl PartialOrd for FetchMethod
impl PartialOrd for FetchMethod
impl Copy for FetchMethod
impl Eq for FetchMethod
impl StructuralPartialEq for FetchMethod
Auto Trait Implementations§
impl Freeze for FetchMethod
impl RefUnwindSafe for FetchMethod
impl Send for FetchMethod
impl Sync for FetchMethod
impl Unpin for FetchMethod
impl UnwindSafe for FetchMethod
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