pub enum EccCurve {
NistP192,
NistP224,
NistP256,
NistP384,
NistP521,
BnP256,
BnP638,
Sm2P256,
}Expand description
Variants
NistP192
NistP224
NistP256
NistP384
NistP521
BnP256
BnP638
Sm2P256
Trait Implementations
sourceimpl From<EccCurve> for EccCurveIdentifier
impl From<EccCurve> for EccCurveIdentifier
sourceimpl From<EccCurve> for TPMI_ECC_CURVE
impl From<EccCurve> for TPMI_ECC_CURVE
sourceimpl From<EccCurveIdentifier> for EccCurve
impl From<EccCurveIdentifier> for EccCurve
sourcefn from(ecc_curve_identifier: EccCurveIdentifier) -> Self
fn from(ecc_curve_identifier: EccCurveIdentifier) -> Self
Converts to this type from the input type.
impl Copy for EccCurve
impl Eq for EccCurve
impl StructuralEq for EccCurve
impl StructuralPartialEq for EccCurve
Auto Trait Implementations
impl RefUnwindSafe for EccCurve
impl Send for EccCurve
impl Sync for EccCurve
impl Unpin for EccCurve
impl UnwindSafe for EccCurve
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more