#[non_exhaustive]pub struct BackendAuthAppleProviderConfigBuilder { /* private fields */ }
Expand description
A builder for BackendAuthAppleProviderConfig
.
Implementations§
source§impl BackendAuthAppleProviderConfigBuilder
impl BackendAuthAppleProviderConfigBuilder
sourcepub fn client_id(self, input: impl Into<String>) -> Self
pub fn client_id(self, input: impl Into<String>) -> Self
Describes the client_id (also called Services ID) that comes from Apple.
sourcepub fn set_client_id(self, input: Option<String>) -> Self
pub fn set_client_id(self, input: Option<String>) -> Self
Describes the client_id (also called Services ID) that comes from Apple.
sourcepub fn key_id(self, input: impl Into<String>) -> Self
pub fn key_id(self, input: impl Into<String>) -> Self
Describes the key_id that comes from Apple.
sourcepub fn set_key_id(self, input: Option<String>) -> Self
pub fn set_key_id(self, input: Option<String>) -> Self
Describes the key_id that comes from Apple.
sourcepub fn private_key(self, input: impl Into<String>) -> Self
pub fn private_key(self, input: impl Into<String>) -> Self
Describes the private_key that comes from Apple.
sourcepub fn set_private_key(self, input: Option<String>) -> Self
pub fn set_private_key(self, input: Option<String>) -> Self
Describes the private_key that comes from Apple.
sourcepub fn team_id(self, input: impl Into<String>) -> Self
pub fn team_id(self, input: impl Into<String>) -> Self
Describes the team_id that comes from Apple.
sourcepub fn set_team_id(self, input: Option<String>) -> Self
pub fn set_team_id(self, input: Option<String>) -> Self
Describes the team_id that comes from Apple.
sourcepub fn build(self) -> BackendAuthAppleProviderConfig
pub fn build(self) -> BackendAuthAppleProviderConfig
Consumes the builder and constructs a BackendAuthAppleProviderConfig
.
Trait Implementations§
source§impl Clone for BackendAuthAppleProviderConfigBuilder
impl Clone for BackendAuthAppleProviderConfigBuilder
source§fn clone(&self) -> BackendAuthAppleProviderConfigBuilder
fn clone(&self) -> BackendAuthAppleProviderConfigBuilder
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 Default for BackendAuthAppleProviderConfigBuilder
impl Default for BackendAuthAppleProviderConfigBuilder
source§fn default() -> BackendAuthAppleProviderConfigBuilder
fn default() -> BackendAuthAppleProviderConfigBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<BackendAuthAppleProviderConfigBuilder> for BackendAuthAppleProviderConfigBuilder
impl PartialEq<BackendAuthAppleProviderConfigBuilder> for BackendAuthAppleProviderConfigBuilder
source§fn eq(&self, other: &BackendAuthAppleProviderConfigBuilder) -> bool
fn eq(&self, other: &BackendAuthAppleProviderConfigBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.