pub struct JwtSection {
pub secret: String,
}Expand description
JWT authentication section.
Fields§
§secret: StringHMAC secret for signing/verifying JWT tokens.
Trait Implementations§
Source§impl Clone for JwtSection
impl Clone for JwtSection
Source§fn clone(&self) -> JwtSection
fn clone(&self) -> JwtSection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 JwtSection
impl Debug for JwtSection
Source§impl Default for JwtSection
impl Default for JwtSection
Source§fn default() -> JwtSection
fn default() -> JwtSection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JwtSection
impl<'de> Deserialize<'de> for JwtSection
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 JwtSection
impl RefUnwindSafe for JwtSection
impl Send for JwtSection
impl Sync for JwtSection
impl Unpin for JwtSection
impl UnsafeUnpin for JwtSection
impl UnwindSafe for JwtSection
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