pub enum JavaAlgorithm {
Ed25519,
EcdsaP256,
MlDsa65,
}Expand description
Java algorithm names this provider handles.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for JavaAlgorithm
impl Clone for JavaAlgorithm
Source§fn clone(&self) -> JavaAlgorithm
fn clone(&self) -> JavaAlgorithm
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 moreSource§impl Debug for JavaAlgorithm
impl Debug for JavaAlgorithm
Source§impl<'de> Deserialize<'de> for JavaAlgorithm
impl<'de> Deserialize<'de> for JavaAlgorithm
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
impl Eq for JavaAlgorithm
Source§impl PartialEq for JavaAlgorithm
impl PartialEq for JavaAlgorithm
Source§fn eq(&self, other: &JavaAlgorithm) -> bool
fn eq(&self, other: &JavaAlgorithm) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for JavaAlgorithm
impl Serialize for JavaAlgorithm
impl StructuralPartialEq for JavaAlgorithm
Auto Trait Implementations§
impl Freeze for JavaAlgorithm
impl RefUnwindSafe for JavaAlgorithm
impl Send for JavaAlgorithm
impl Sync for JavaAlgorithm
impl Unpin for JavaAlgorithm
impl UnsafeUnpin for JavaAlgorithm
impl UnwindSafe for JavaAlgorithm
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