Struct jwt_compact::prelude::TimeOptions[][src]

#[non_exhaustive]
pub struct TimeOptions<F = fn() -> DateTime<Utc>> { pub leeway: Duration, pub clock_fn: F, }
Expand description

Time-related options for token creation and validation.

If the clock crate feature is on (and it’s on by default), TimeOptions can be created using the Default impl or Self::from_leeway(). If the feature is off, you can still create options using a generic constructor.

Examples

// Default options.
let default_options = TimeOptions::default();
let options_with_custom_leeway =
    TimeOptions::from_leeway(Duration::seconds(5));
// Options that have a fixed time. Can be useful for testing.
let clock_time = Utc::now();
let options_with_stopped_clock =
    TimeOptions::new(Duration::seconds(10), move || clock_time);

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct {{ .. }} syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
leeway: Duration

Leeway to use during validation.

clock_fn: F

Source of the current timestamps.

Implementations

impl<F: Fn() -> DateTime<Utc>> TimeOptions<F>[src]

pub fn new(leeway: Duration, clock_fn: F) -> Self[src]

Creates options based on the specified time leeway and clock function.

impl TimeOptions[src]

pub fn from_leeway(leeway: Duration) -> Self[src]

This is supported on crate feature clock only.

Creates options based on the specified time leeway. The clock source is Utc::now().

Trait Implementations

impl<F: Clone> Clone for TimeOptions<F>[src]

fn clone(&self) -> TimeOptions<F>[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<F: Debug> Debug for TimeOptions<F>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Default for TimeOptions[src]

Creates options with a default leeway (60 seconds) and the Utc::now() clock.

This impl is supported on crate feature clock only.

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl<F: Copy> Copy for TimeOptions<F>[src]

Auto Trait Implementations

impl<F> RefUnwindSafe for TimeOptions<F> where
    F: RefUnwindSafe

impl<F> Send for TimeOptions<F> where
    F: Send

impl<F> Sync for TimeOptions<F> where
    F: Sync

impl<F> Unpin for TimeOptions<F> where
    F: Unpin

impl<F> UnwindSafe for TimeOptions<F> where
    F: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

pub fn vzip(self) -> V