pub struct BackendOidcModeOverrideConfig<PC, MC>where
PC: PendingOauthStoreConfig,
MC: PendingAuthStateMetadataRedemptionConfig,{
pub oidc_client: OptionalTokenSetOidcSharedIntersectionConfig,
pub pending_store: Option<PC>,
pub refresh_material_protection: Option<RefreshMaterialProtection>,
pub metadata_delivery: Option<MetadataDelivery<MC>>,
pub post_auth_redirect: Option<PostAuthRedirectPolicy>,
}Fields§
§oidc_client: OptionalTokenSetOidcSharedIntersectionConfig§pending_store: Option<PC>§refresh_material_protection: Option<RefreshMaterialProtection>§metadata_delivery: Option<MetadataDelivery<MC>>§post_auth_redirect: Option<PostAuthRedirectPolicy>Trait Implementations§
Source§impl<PC, MC> Clone for BackendOidcModeOverrideConfig<PC, MC>
impl<PC, MC> Clone for BackendOidcModeOverrideConfig<PC, MC>
Source§fn clone(&self) -> BackendOidcModeOverrideConfig<PC, MC>
fn clone(&self) -> BackendOidcModeOverrideConfig<PC, MC>
Returns a duplicate 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<PC, MC> Debug for BackendOidcModeOverrideConfig<PC, MC>
impl<PC, MC> Debug for BackendOidcModeOverrideConfig<PC, MC>
Source§impl<PC, MC> Default for BackendOidcModeOverrideConfig<PC, MC>where
PC: PendingOauthStoreConfig + Default,
MC: PendingAuthStateMetadataRedemptionConfig + Default,
impl<PC, MC> Default for BackendOidcModeOverrideConfig<PC, MC>where
PC: PendingOauthStoreConfig + Default,
MC: PendingAuthStateMetadataRedemptionConfig + Default,
Source§fn default() -> BackendOidcModeOverrideConfig<PC, MC>
fn default() -> BackendOidcModeOverrideConfig<PC, MC>
Returns the “default value” for a type. Read more
Source§impl<'de, PC, MC> Deserialize<'de> for BackendOidcModeOverrideConfig<PC, MC>where
PC: PendingOauthStoreConfig + Default,
MC: PendingAuthStateMetadataRedemptionConfig + Default,
impl<'de, PC, MC> Deserialize<'de> for BackendOidcModeOverrideConfig<PC, MC>where
PC: PendingOauthStoreConfig + Default,
MC: PendingAuthStateMetadataRedemptionConfig + Default,
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<PC, MC> Freeze for BackendOidcModeOverrideConfig<PC, MC>
impl<PC, MC> RefUnwindSafe for BackendOidcModeOverrideConfig<PC, MC>where
PC: RefUnwindSafe,
MC: RefUnwindSafe,
impl<PC, MC> Send for BackendOidcModeOverrideConfig<PC, MC>where
MC: Send,
impl<PC, MC> Sync for BackendOidcModeOverrideConfig<PC, MC>where
MC: Sync,
impl<PC, MC> Unpin for BackendOidcModeOverrideConfig<PC, MC>
impl<PC, MC> UnsafeUnpin for BackendOidcModeOverrideConfig<PC, MC>where
PC: UnsafeUnpin,
MC: UnsafeUnpin,
impl<PC, MC> UnwindSafe for BackendOidcModeOverrideConfig<PC, MC>where
PC: UnwindSafe,
MC: UnwindSafe,
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,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more