pub struct Builder { /* private fields */ }
Expand description
A builder for BackendAuthAppleProviderConfig
.
Implementations§
source§impl Builder
impl Builder
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
.