Enum AsymmetricKeyAlgorithm
#[repr(u32)]pub enum AsymmetricKeyAlgorithm {
RsaSsaPssSha2562048 = 1,
RsaSsaPssSha2563072 = 2,
RsaSsaPssSha5124096 = 3,
RsaSsaPkcs1Sha2562048 = 4,
RsaSsaPkcs1Sha2563072 = 5,
RsaSsaPkcs1Sha5124096 = 6,
EcdsaSha256P256 = 7,
EcdsaSha512P384 = 8,
EcdsaSha512P521 = 9,
}
Variants§
RsaSsaPssSha2562048 = 1
RsaSsaPssSha2563072 = 2
RsaSsaPssSha5124096 = 3
RsaSsaPkcs1Sha2562048 = 4
RsaSsaPkcs1Sha2563072 = 5
RsaSsaPkcs1Sha5124096 = 6
EcdsaSha256P256 = 7
EcdsaSha512P384 = 8
EcdsaSha512P521 = 9
Implementations§
§impl AsymmetricKeyAlgorithm
impl AsymmetricKeyAlgorithm
pub fn from_primitive(prim: u32) -> Option<AsymmetricKeyAlgorithm>
pub const fn into_primitive(self) -> u32
pub fn is_unknown(&self) -> bool
👎Deprecated: Strict enums should not use
is_unknown
Trait Implementations§
§impl Clone for AsymmetricKeyAlgorithm
impl Clone for AsymmetricKeyAlgorithm
§fn clone(&self) -> AsymmetricKeyAlgorithm
fn clone(&self) -> AsymmetricKeyAlgorithm
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 more§impl Debug for AsymmetricKeyAlgorithm
impl Debug for AsymmetricKeyAlgorithm
§impl<D> Decode<AsymmetricKeyAlgorithm, D> for AsymmetricKeyAlgorithmwhere
D: ResourceDialect,
impl<D> Decode<AsymmetricKeyAlgorithm, D> for AsymmetricKeyAlgorithmwhere
D: ResourceDialect,
§fn new_empty() -> AsymmetricKeyAlgorithm
fn new_empty() -> AsymmetricKeyAlgorithm
Creates a valid instance of
Self
. The specific value does not matter,
since it will be overwritten by decode
.§impl<D> Encode<AsymmetricKeyAlgorithm, D> for AsymmetricKeyAlgorithmwhere
D: ResourceDialect,
impl<D> Encode<AsymmetricKeyAlgorithm, D> for AsymmetricKeyAlgorithmwhere
D: ResourceDialect,
§impl Hash for AsymmetricKeyAlgorithm
impl Hash for AsymmetricKeyAlgorithm
§impl Ord for AsymmetricKeyAlgorithm
impl Ord for AsymmetricKeyAlgorithm
§fn cmp(&self, other: &AsymmetricKeyAlgorithm) -> Ordering
fn cmp(&self, other: &AsymmetricKeyAlgorithm) -> Ordering
1.21.0 · 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
§impl PartialEq for AsymmetricKeyAlgorithm
impl PartialEq for AsymmetricKeyAlgorithm
§impl PartialOrd for AsymmetricKeyAlgorithm
impl PartialOrd for AsymmetricKeyAlgorithm
§impl TypeMarker for AsymmetricKeyAlgorithm
impl TypeMarker for AsymmetricKeyAlgorithm
§type Owned = AsymmetricKeyAlgorithm
type Owned = AsymmetricKeyAlgorithm
The owned Rust type which this FIDL type decodes into.
§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Returns the minimum required alignment of the inline portion of the
encoded object. It must be a (nonzero) power of two.
§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
Returns the size of the inline portion of the encoded object, including
padding for alignment. Must be a multiple of
inline_align
.§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned
to a single memcpy. Read more§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned
to a single memcpy.§impl ValueTypeMarker for AsymmetricKeyAlgorithm
impl ValueTypeMarker for AsymmetricKeyAlgorithm
§type Borrowed<'a> = AsymmetricKeyAlgorithm
type Borrowed<'a> = AsymmetricKeyAlgorithm
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read more§fn borrow(
value: &<AsymmetricKeyAlgorithm as TypeMarker>::Owned,
) -> <AsymmetricKeyAlgorithm as ValueTypeMarker>::Borrowed<'_>
fn borrow( value: &<AsymmetricKeyAlgorithm as TypeMarker>::Owned, ) -> <AsymmetricKeyAlgorithm as ValueTypeMarker>::Borrowed<'_>
Cheaply converts from
&Self::Owned
to Self::Borrowed
.impl Copy for AsymmetricKeyAlgorithm
impl Eq for AsymmetricKeyAlgorithm
impl StructuralPartialEq for AsymmetricKeyAlgorithm
Auto Trait Implementations§
impl Freeze for AsymmetricKeyAlgorithm
impl RefUnwindSafe for AsymmetricKeyAlgorithm
impl Send for AsymmetricKeyAlgorithm
impl Sync for AsymmetricKeyAlgorithm
impl Unpin for AsymmetricKeyAlgorithm
impl UnwindSafe for AsymmetricKeyAlgorithm
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