pub struct PublicApplicationConfig {
pub project_public_id: String,
pub project_display_name: String,
pub application_public_id: String,
pub application_display_name: String,
pub publishable_keys: Vec<String>,
pub providers: Vec<PublicProvider>,
pub email_available: bool,
pub email_otp_enabled: bool,
pub email_magic_link_enabled: bool,
pub login_available: bool,
}Fields§
§project_public_id: String§project_display_name: String§application_public_id: String§application_display_name: String§publishable_keys: Vec<String>§providers: Vec<PublicProvider>§email_available: boolTrue only while this Runtime can complete the durable email flow.
email_otp_enabled: bool§email_magic_link_enabled: bool§login_available: boolTrait Implementations§
Source§impl Clone for PublicApplicationConfig
impl Clone for PublicApplicationConfig
Source§fn clone(&self) -> PublicApplicationConfig
fn clone(&self) -> PublicApplicationConfig
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 ComposeSchema for PublicApplicationConfig
impl ComposeSchema for PublicApplicationConfig
Source§impl Debug for PublicApplicationConfig
impl Debug for PublicApplicationConfig
Source§impl<'de> Deserialize<'de> for PublicApplicationConfig
impl<'de> Deserialize<'de> for PublicApplicationConfig
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
impl Eq for PublicApplicationConfig
Source§impl PartialEq for PublicApplicationConfig
impl PartialEq for PublicApplicationConfig
Source§impl Serialize for PublicApplicationConfig
impl Serialize for PublicApplicationConfig
impl StructuralPartialEq for PublicApplicationConfig
Auto Trait Implementations§
impl Freeze for PublicApplicationConfig
impl RefUnwindSafe for PublicApplicationConfig
impl Send for PublicApplicationConfig
impl Sync for PublicApplicationConfig
impl Unpin for PublicApplicationConfig
impl UnsafeUnpin for PublicApplicationConfig
impl UnwindSafe for PublicApplicationConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.