pub struct FrontChannelLogoutConfig {
pub enabled: bool,
pub iframe_timeout_ms: u64,
pub max_concurrent_notifications: usize,
pub include_session_state: bool,
pub iframe_width: u32,
pub iframe_height: u32,
pub enable_debug_logging: bool,
}Expand description
Front-channel logout configuration
Fields§
§enabled: boolEnable front-channel logout
iframe_timeout_ms: u64Maximum time to wait for iframe loads (milliseconds)
max_concurrent_notifications: usizeMaximum number of concurrent iframe notifications
include_session_state: boolInclude session_state parameter in logout URIs
iframe_width: u32Default iframe dimensions
iframe_height: u32§enable_debug_logging: boolEnable JavaScript console logging for debugging
Trait Implementations§
Source§impl Clone for FrontChannelLogoutConfig
impl Clone for FrontChannelLogoutConfig
Source§fn clone(&self) -> FrontChannelLogoutConfig
fn clone(&self) -> FrontChannelLogoutConfig
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 Debug for FrontChannelLogoutConfig
impl Debug for FrontChannelLogoutConfig
Auto Trait Implementations§
impl Freeze for FrontChannelLogoutConfig
impl RefUnwindSafe for FrontChannelLogoutConfig
impl Send for FrontChannelLogoutConfig
impl Sync for FrontChannelLogoutConfig
impl Unpin for FrontChannelLogoutConfig
impl UnwindSafe for FrontChannelLogoutConfig
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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