pub enum WebFetchMethod {
Get,
Post,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for WebFetchMethod
impl Clone for WebFetchMethod
Source§fn clone(&self) -> WebFetchMethod
fn clone(&self) -> WebFetchMethod
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 moreimpl Copy for WebFetchMethod
Source§impl Debug for WebFetchMethod
impl Debug for WebFetchMethod
Source§impl<'de> Deserialize<'de> for WebFetchMethod
impl<'de> Deserialize<'de> for WebFetchMethod
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
impl Eq for WebFetchMethod
Source§impl PartialEq for WebFetchMethod
impl PartialEq for WebFetchMethod
Source§fn eq(&self, other: &WebFetchMethod) -> bool
fn eq(&self, other: &WebFetchMethod) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WebFetchMethod
impl Serialize for WebFetchMethod
impl StructuralPartialEq for WebFetchMethod
Auto Trait Implementations§
impl Freeze for WebFetchMethod
impl RefUnwindSafe for WebFetchMethod
impl Send for WebFetchMethod
impl Sync for WebFetchMethod
impl Unpin for WebFetchMethod
impl UnsafeUnpin for WebFetchMethod
impl UnwindSafe for WebFetchMethod
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