Struct tss_esapi::structures::EccPoint
source · [−]pub struct EccPoint { /* private fields */ }Expand description
Implementations
sourceimpl EccPoint
impl EccPoint
sourcepub const fn new(x: EccParameter, y: EccParameter) -> Self
pub const fn new(x: EccParameter, y: EccParameter) -> Self
Creates a new ecc point
sourcepub const fn x(&self) -> &EccParameter
pub const fn x(&self) -> &EccParameter
Returns x value as an EccParameter reference.
sourcepub const fn y(&self) -> &EccParameter
pub const fn y(&self) -> &EccParameter
Returns y value as an EccParameter reference.
Trait Implementations
sourceimpl From<EccPoint> for TPMS_ECC_POINT
impl From<EccPoint> for TPMS_ECC_POINT
sourceimpl From<EccPoint> for TPM2B_ECC_POINT
impl From<EccPoint> for TPM2B_ECC_POINT
sourceimpl TryFrom<TPMS_ECC_POINT> for EccPoint
impl TryFrom<TPMS_ECC_POINT> for EccPoint
impl Eq for EccPoint
impl StructuralEq for EccPoint
impl StructuralPartialEq for EccPoint
Auto Trait Implementations
impl RefUnwindSafe for EccPoint
impl Send for EccPoint
impl Sync for EccPoint
impl Unpin for EccPoint
impl UnwindSafe for EccPoint
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