pub struct OAuthIdentityConfig {
pub apple_services_id: String,
pub apple_team_id: String,
pub apple_bundle_id: String,
pub oauth_return_to_hosts: Vec<String>,
}Expand description
OAuthIdentityConfig model.
Fields§
§apple_services_id: String§apple_team_id: String§apple_bundle_id: String§oauth_return_to_hosts: Vec<String>Lower-cased hostnames. Empty means nothing is allowlisted.
Trait Implementations§
Source§impl Clone for OAuthIdentityConfig
impl Clone for OAuthIdentityConfig
Source§fn clone(&self) -> OAuthIdentityConfig
fn clone(&self) -> OAuthIdentityConfig
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 OAuthIdentityConfig
impl Debug for OAuthIdentityConfig
Source§impl Default for OAuthIdentityConfig
impl Default for OAuthIdentityConfig
Source§fn default() -> OAuthIdentityConfig
fn default() -> OAuthIdentityConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OAuthIdentityConfig
impl<'de> Deserialize<'de> for OAuthIdentityConfig
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 OAuthIdentityConfig
impl PartialEq for OAuthIdentityConfig
Source§impl Serialize for OAuthIdentityConfig
impl Serialize for OAuthIdentityConfig
impl StructuralPartialEq for OAuthIdentityConfig
Auto Trait Implementations§
impl Freeze for OAuthIdentityConfig
impl RefUnwindSafe for OAuthIdentityConfig
impl Send for OAuthIdentityConfig
impl Sync for OAuthIdentityConfig
impl Unpin for OAuthIdentityConfig
impl UnsafeUnpin for OAuthIdentityConfig
impl UnwindSafe for OAuthIdentityConfig
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