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