pub struct ClientSecretExpiration {
pub anchor: Option<String>,
pub seconds: u32,
}Available on crate feature
realtime only.Expand description
Client secret expiration configuration.
Fields§
§anchor: Option<String>The anchor point for the client secret expiration.
Only created_at is currently supported.
seconds: u32The number of seconds from the anchor point to the expiration.
Select a value between 10 and 7200 (2 hours).
Defaults to 600 seconds (10 minutes) if not specified.
Trait Implementations§
Source§impl Clone for ClientSecretExpiration
impl Clone for ClientSecretExpiration
Source§fn clone(&self) -> ClientSecretExpiration
fn clone(&self) -> ClientSecretExpiration
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 ClientSecretExpiration
impl Debug for ClientSecretExpiration
Auto Trait Implementations§
impl Freeze for ClientSecretExpiration
impl RefUnwindSafe for ClientSecretExpiration
impl Send for ClientSecretExpiration
impl Sync for ClientSecretExpiration
impl Unpin for ClientSecretExpiration
impl UnwindSafe for ClientSecretExpiration
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