pub enum HpkeAeadAlgorithm {
AesGcm256,
Chacha20Poly1305,
}Expand description
The AEAD algorithm used for HPKE encryption.
JSON schema
{
"title": "HPKEAeadAlgorithm",
"description": "The AEAD algorithm used for HPKE encryption.",
"type": "string",
"enum": [
"AES_GCM256",
"CHACHA20_POLY1305"
],
"x-stainless-model": "wallets.hpke_aead_algorithm"
}Variants§
Trait Implementations§
Source§impl Clone for HpkeAeadAlgorithm
impl Clone for HpkeAeadAlgorithm
Source§fn clone(&self) -> HpkeAeadAlgorithm
fn clone(&self) -> HpkeAeadAlgorithm
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 moreimpl Copy for HpkeAeadAlgorithm
Source§impl Debug for HpkeAeadAlgorithm
impl Debug for HpkeAeadAlgorithm
Source§impl<'de> Deserialize<'de> for HpkeAeadAlgorithm
impl<'de> Deserialize<'de> for HpkeAeadAlgorithm
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 Display for HpkeAeadAlgorithm
impl Display for HpkeAeadAlgorithm
impl Eq for HpkeAeadAlgorithm
Source§impl From<&HpkeAeadAlgorithm> for HpkeAeadAlgorithm
impl From<&HpkeAeadAlgorithm> for HpkeAeadAlgorithm
Source§fn from(value: &HpkeAeadAlgorithm) -> Self
fn from(value: &HpkeAeadAlgorithm) -> Self
Converts to this type from the input type.
Source§impl FromStr for HpkeAeadAlgorithm
impl FromStr for HpkeAeadAlgorithm
Source§impl Hash for HpkeAeadAlgorithm
impl Hash for HpkeAeadAlgorithm
Source§impl Ord for HpkeAeadAlgorithm
impl Ord for HpkeAeadAlgorithm
Source§fn cmp(&self, other: &HpkeAeadAlgorithm) -> Ordering
fn cmp(&self, other: &HpkeAeadAlgorithm) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for HpkeAeadAlgorithm
impl PartialEq for HpkeAeadAlgorithm
Source§fn eq(&self, other: &HpkeAeadAlgorithm) -> bool
fn eq(&self, other: &HpkeAeadAlgorithm) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for HpkeAeadAlgorithm
impl PartialOrd for HpkeAeadAlgorithm
Source§impl Serialize for HpkeAeadAlgorithm
impl Serialize for HpkeAeadAlgorithm
impl StructuralPartialEq for HpkeAeadAlgorithm
Source§impl TryFrom<&String> for HpkeAeadAlgorithm
impl TryFrom<&String> for HpkeAeadAlgorithm
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for HpkeAeadAlgorithm
impl TryFrom<&str> for HpkeAeadAlgorithm
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for HpkeAeadAlgorithm
impl TryFrom<String> for HpkeAeadAlgorithm
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for HpkeAeadAlgorithm
impl RefUnwindSafe for HpkeAeadAlgorithm
impl Send for HpkeAeadAlgorithm
impl Sync for HpkeAeadAlgorithm
impl Unpin for HpkeAeadAlgorithm
impl UnsafeUnpin for HpkeAeadAlgorithm
impl UnwindSafe for HpkeAeadAlgorithm
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