Enum aws_sdk_rust::aws::s3::endpoint::Signature
[−]
[src]
pub enum Signature { V2, V4, }
Required to specify which type of API Signature to use. AWS defaults to using V4 by default. However, third party applications often use V2 (AWS will still honor V2).
Variants
V2
V4
Trait Implementations
impl Debug for Signature
[src]
impl Clone for Signature
[src]
fn clone(&self) -> Signature
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl PartialEq for Signature
[src]
fn eq(&self, __arg_0: &Signature) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0
This method tests for !=
.
impl Decodable for Signature
[src]
fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<Signature, __D::Error>
Deserialize a value using a Decoder
.