Struct wasm_oidc_plugin::responses::JWKsResponse
source · pub struct JWKsResponse {
pub keys: Vec<JsonWebKey>,
}
Expand description
JWKs response Contains a list of keys that are retrieved from the jwks uri
Fields§
§keys: Vec<JsonWebKey>
The keys of the jwks response, see JWK
Trait Implementations§
source§impl Debug for JWKsResponse
impl Debug for JWKsResponse
source§impl<'de> Deserialize<'de> for JWKsResponse
impl<'de> Deserialize<'de> for JWKsResponse
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 JWKsResponse
impl RefUnwindSafe for JWKsResponse
impl Send for JWKsResponse
impl Sync for JWKsResponse
impl Unpin for JWKsResponse
impl UnwindSafe for JWKsResponse
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