pub struct ClaimsBuilder<T> { /* private fields */ }
Implementations§
Source§impl<T> ClaimsBuilder<T>where
T: Default + WascapEntity,
impl<T> ClaimsBuilder<T>where
T: Default + WascapEntity,
Sourcepub fn expires_in(&mut self, d: Duration) -> &mut Self
pub fn expires_in(&mut self, d: Duration) -> &mut Self
Indicates how long this claim set will remain valid
Sourcepub fn valid_in(&mut self, d: Duration) -> &mut Self
pub fn valid_in(&mut self, d: Duration) -> &mut Self
Indicates how long until this claim set becomes valid
Sourcepub fn with_metadata(&mut self, metadata: T) -> &mut Self
pub fn with_metadata(&mut self, metadata: T) -> &mut Self
Sets the appropriate metadata for this claims type (e.g. Component
, Operator
, Invocation
, CapabilityProvider
or Account
)
pub fn build(&self) -> Claims<T>
Trait Implementations§
Source§impl<T: Default> Default for ClaimsBuilder<T>
impl<T: Default> Default for ClaimsBuilder<T>
Source§fn default() -> ClaimsBuilder<T>
fn default() -> ClaimsBuilder<T>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<T> Freeze for ClaimsBuilder<T>where
T: Freeze,
impl<T> RefUnwindSafe for ClaimsBuilder<T>where
T: RefUnwindSafe,
impl<T> Send for ClaimsBuilder<T>where
T: Send,
impl<T> Sync for ClaimsBuilder<T>where
T: Sync,
impl<T> Unpin for ClaimsBuilder<T>where
T: Unpin,
impl<T> UnwindSafe for ClaimsBuilder<T>where
T: UnwindSafe,
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