pub struct JwtAuthorityConfig {
pub aud: Option<String>,
}Fields§
§aud: Option<String>JWT audience to use when minting JWTs; if not set,
default to broad fallback *.architect.co.
Trait Implementations§
Source§impl Clone for JwtAuthorityConfig
impl Clone for JwtAuthorityConfig
Source§fn clone(&self) -> JwtAuthorityConfig
fn clone(&self) -> JwtAuthorityConfig
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 JwtAuthorityConfig
impl Debug for JwtAuthorityConfig
Source§impl Default for JwtAuthorityConfig
impl Default for JwtAuthorityConfig
Source§fn default() -> JwtAuthorityConfig
fn default() -> JwtAuthorityConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JwtAuthorityConfig
impl<'de> Deserialize<'de> for JwtAuthorityConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for JwtAuthorityConfig
impl RefUnwindSafe for JwtAuthorityConfig
impl Send for JwtAuthorityConfig
impl Sync for JwtAuthorityConfig
impl Unpin for JwtAuthorityConfig
impl UnwindSafe for JwtAuthorityConfig
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