pub enum SecretMaterial {
JWK {
private_key_jwk: Value,
},
}Expand description
Secret key material
Variants§
Trait Implementations§
Source§impl Clone for SecretMaterial
impl Clone for SecretMaterial
Source§fn clone(&self) -> SecretMaterial
fn clone(&self) -> SecretMaterial
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 SecretMaterial
impl Debug for SecretMaterial
Source§impl<'de> Deserialize<'de> for SecretMaterial
impl<'de> Deserialize<'de> for SecretMaterial
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 SecretMaterial
impl PartialEq for SecretMaterial
Source§impl Serialize for SecretMaterial
impl Serialize for SecretMaterial
impl StructuralPartialEq for SecretMaterial
Auto Trait Implementations§
impl Freeze for SecretMaterial
impl RefUnwindSafe for SecretMaterial
impl Send for SecretMaterial
impl Sync for SecretMaterial
impl Unpin for SecretMaterial
impl UnwindSafe for SecretMaterial
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