Struct tss_esapi::structures::PublicEccParameters
source · [−]pub struct PublicEccParameters { /* private fields */ }Expand description
Implementations
sourceimpl PublicEccParameters
impl PublicEccParameters
sourcepub const fn new(
symmetric_definition_object: SymmetricDefinitionObject,
ecc_scheme: EccScheme,
ecc_curve: EccCurve,
key_derivation_function_scheme: KeyDerivationFunctionScheme
) -> PublicEccParameters
pub const fn new(
symmetric_definition_object: SymmetricDefinitionObject,
ecc_scheme: EccScheme,
ecc_curve: EccCurve,
key_derivation_function_scheme: KeyDerivationFunctionScheme
) -> PublicEccParameters
Creates new EccParameters structure
sourcepub const fn symmetric_definition_object(&self) -> SymmetricDefinitionObject
pub const fn symmetric_definition_object(&self) -> SymmetricDefinitionObject
Returns the SymmetricDefinitionObject.
sourcepub const fn ecc_scheme(&self) -> EccScheme
pub const fn ecc_scheme(&self) -> EccScheme
Returns the EccScheme
sourcepub const fn key_derivation_function_scheme(
&self
) -> KeyDerivationFunctionScheme
pub const fn key_derivation_function_scheme(
&self
) -> KeyDerivationFunctionScheme
Returns the KeyDerivationFunctionScheme
sourcepub const fn builder() -> PublicEccParametersBuilder
pub const fn builder() -> PublicEccParametersBuilder
Get a builder for this structure
Trait Implementations
sourceimpl Clone for PublicEccParameters
impl Clone for PublicEccParameters
sourcefn clone(&self) -> PublicEccParameters
fn clone(&self) -> PublicEccParameters
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for PublicEccParameters
impl Debug for PublicEccParameters
sourceimpl From<PublicEccParameters> for TPMS_ECC_PARMS
impl From<PublicEccParameters> for TPMS_ECC_PARMS
sourcefn from(public_ecc_parameters: PublicEccParameters) -> Self
fn from(public_ecc_parameters: PublicEccParameters) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<PublicEccParameters> for PublicEccParameters
impl PartialEq<PublicEccParameters> for PublicEccParameters
sourcefn eq(&self, other: &PublicEccParameters) -> bool
fn eq(&self, other: &PublicEccParameters) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &PublicEccParameters) -> bool
fn ne(&self, other: &PublicEccParameters) -> bool
This method tests for !=.
sourceimpl TryFrom<TPMS_ECC_PARMS> for PublicEccParameters
impl TryFrom<TPMS_ECC_PARMS> for PublicEccParameters
sourcefn try_from(tpms_ecc_parms: TPMS_ECC_PARMS) -> Result<PublicEccParameters>
fn try_from(tpms_ecc_parms: TPMS_ECC_PARMS) -> Result<PublicEccParameters>
Performs the conversion.
impl Copy for PublicEccParameters
impl Eq for PublicEccParameters
impl StructuralEq for PublicEccParameters
impl StructuralPartialEq for PublicEccParameters
Auto Trait Implementations
impl RefUnwindSafe for PublicEccParameters
impl Send for PublicEccParameters
impl Sync for PublicEccParameters
impl Unpin for PublicEccParameters
impl UnwindSafe for PublicEccParameters
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