pub struct LinkingConfig {
pub jit_provisioning: bool,
pub auto_link_verified_email: bool,
}Expand description
Account-linking + provisioning policy. The defaults are the enterprise-safe posture: JIT-provision brand-new users, but never silently merge a federated login into a pre-existing local account.
Fields§
§jit_provisioning: boolCreate a new local user the first time an unknown external identity signs
in (Just-In-Time provisioning). When false, unknown users are rejected
(pre-provisioned / invited orgs).
auto_link_verified_email: boolAutomatically link a first-time federated identity to an existing local
account when both the provider email and the local account email are
verified. Default false: instead return
FederatedOutcome::LinkRequired so the app runs an explicit,
authenticated “connect your account” step — the only takeover-proof flow.
Trait Implementations§
Source§impl Clone for LinkingConfig
impl Clone for LinkingConfig
Source§fn clone(&self) -> LinkingConfig
fn clone(&self) -> LinkingConfig
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 LinkingConfig
impl Debug for LinkingConfig
Auto Trait Implementations§
impl Freeze for LinkingConfig
impl RefUnwindSafe for LinkingConfig
impl Send for LinkingConfig
impl Sync for LinkingConfig
impl Unpin for LinkingConfig
impl UnsafeUnpin for LinkingConfig
impl UnwindSafe for LinkingConfig
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request