pub enum OidcClientAssertionKeyIdHeader {
OidcClientAssertionHeaderKid,
OidcClientAssertionHeaderX5T,
OidcClientAssertionHeaderX5TS256,
}
Expand description
OIDCClientAssertionKeyIDHeader is the header that the OIDC provider will use to look up the certificate or public key that it needs to verify the private key JWT signature.
This enum was generated based on the Go types of the official Nomad API client.
Variants§
Trait Implementations§
Source§impl Clone for OidcClientAssertionKeyIdHeader
impl Clone for OidcClientAssertionKeyIdHeader
Source§fn clone(&self) -> OidcClientAssertionKeyIdHeader
fn clone(&self) -> OidcClientAssertionKeyIdHeader
Returns a copy 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<'de> Deserialize<'de> for OidcClientAssertionKeyIdHeader
impl<'de> Deserialize<'de> for OidcClientAssertionKeyIdHeader
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
Source§impl PartialEq for OidcClientAssertionKeyIdHeader
impl PartialEq for OidcClientAssertionKeyIdHeader
Source§fn eq(&self, other: &OidcClientAssertionKeyIdHeader) -> bool
fn eq(&self, other: &OidcClientAssertionKeyIdHeader) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for OidcClientAssertionKeyIdHeader
Auto Trait Implementations§
impl Freeze for OidcClientAssertionKeyIdHeader
impl RefUnwindSafe for OidcClientAssertionKeyIdHeader
impl Send for OidcClientAssertionKeyIdHeader
impl Sync for OidcClientAssertionKeyIdHeader
impl Unpin for OidcClientAssertionKeyIdHeader
impl UnwindSafe for OidcClientAssertionKeyIdHeader
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