pub struct BackChannelLogoutConfig {
pub enabled: bool,
pub base_url: Option<String>,
pub request_timeout_secs: u64,
pub max_retry_attempts: u32,
pub retry_delay_ms: u64,
pub max_concurrent_notifications: usize,
pub logout_token_exp_secs: u64,
pub include_session_claims: bool,
pub user_agent: String,
pub enable_http_logging: bool,
}Expand description
Back-channel logout configuration
Fields§
§enabled: boolEnable back-channel logout
base_url: Option<String>Base URL for endpoints
request_timeout_secs: u64Request timeout in seconds
max_retry_attempts: u32Maximum retry attempts for failed requests
retry_delay_ms: u64Retry delay in milliseconds (exponential backoff base)
max_concurrent_notifications: usizeMaximum concurrent notifications
logout_token_exp_secs: u64Logout token expiration time in seconds
include_session_claims: boolInclude additional claims in logout token
user_agent: StringCustom User-Agent for HTTP requests
enable_http_logging: boolEnable request/response logging
Trait Implementations§
Source§impl Clone for BackChannelLogoutConfig
impl Clone for BackChannelLogoutConfig
Source§fn clone(&self) -> BackChannelLogoutConfig
fn clone(&self) -> BackChannelLogoutConfig
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 BackChannelLogoutConfig
impl Debug for BackChannelLogoutConfig
Auto Trait Implementations§
impl Freeze for BackChannelLogoutConfig
impl RefUnwindSafe for BackChannelLogoutConfig
impl Send for BackChannelLogoutConfig
impl Sync for BackChannelLogoutConfig
impl Unpin for BackChannelLogoutConfig
impl UnwindSafe for BackChannelLogoutConfig
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