pub enum PresignedMethod {
Get,
Put,
Post,
}Expand description
HTTP method required by a signed direct-object request.
Variants§
Trait Implementations§
Source§impl Clone for PresignedMethod
impl Clone for PresignedMethod
Source§fn clone(&self) -> PresignedMethod
fn clone(&self) -> PresignedMethod
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 PresignedMethod
Source§impl Debug for PresignedMethod
impl Debug for PresignedMethod
Source§impl<'de> Deserialize<'de> for PresignedMethod
impl<'de> Deserialize<'de> for PresignedMethod
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 PresignedMethod
Source§impl PartialEq for PresignedMethod
impl PartialEq for PresignedMethod
Source§impl Serialize for PresignedMethod
impl Serialize for PresignedMethod
impl StructuralPartialEq for PresignedMethod
Auto Trait Implementations§
impl Freeze for PresignedMethod
impl RefUnwindSafe for PresignedMethod
impl Send for PresignedMethod
impl Sync for PresignedMethod
impl Unpin for PresignedMethod
impl UnsafeUnpin for PresignedMethod
impl UnwindSafe for PresignedMethod
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