pub enum EveJwtKey {
RS256 {
e: String,
kid: String,
kty: String,
n: String,
use: String,
},
ES256 {
crv: String,
kid: String,
kty: String,
use: String,
x: String,
y: String,
},
}Variants§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for EveJwtKey
impl<'de> Deserialize<'de> for EveJwtKey
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 EveJwtKey
impl RefUnwindSafe for EveJwtKey
impl Send for EveJwtKey
impl Sync for EveJwtKey
impl Unpin for EveJwtKey
impl UnwindSafe for EveJwtKey
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