pub struct EndpointOAuthAmazon {
pub client_id: Option<String>,
pub client_secret: Option<String>,
pub scopes: Vec<String>,
pub email_addresses: Vec<String>,
pub email_domains: Vec<String>,
}
Fields§
§client_id: Option<String>
§client_secret: Option<String>
§scopes: Vec<String>
§email_addresses: Vec<String>
§email_domains: Vec<String>
Trait Implementations§
Source§impl Clone for EndpointOAuthAmazon
impl Clone for EndpointOAuthAmazon
Source§fn clone(&self) -> EndpointOAuthAmazon
fn clone(&self) -> EndpointOAuthAmazon
Returns a copy 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 EndpointOAuthAmazon
impl Debug for EndpointOAuthAmazon
Source§impl Default for EndpointOAuthAmazon
impl Default for EndpointOAuthAmazon
Source§fn default() -> EndpointOAuthAmazon
fn default() -> EndpointOAuthAmazon
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EndpointOAuthAmazon
impl<'de> Deserialize<'de> for EndpointOAuthAmazon
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
Auto Trait Implementations§
impl Freeze for EndpointOAuthAmazon
impl RefUnwindSafe for EndpointOAuthAmazon
impl Send for EndpointOAuthAmazon
impl Sync for EndpointOAuthAmazon
impl Unpin for EndpointOAuthAmazon
impl UnwindSafe for EndpointOAuthAmazon
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