#[repr(C)]pub struct _ecc_25519_work {
pub X: [u32; 32],
pub Y: [u32; 32],
pub Z: [u32; 32],
pub T: [u32; 32],
}Expand description
A point on the curve unpacked for efficient calculation
The internal representation of an unpacked point isn’t unique, so for serialization it should always be packed.
Fields§
§X: [u32; 32]§Y: [u32; 32]§Z: [u32; 32]§T: [u32; 32]Trait Implementations§
Source§impl Clone for _ecc_25519_work
impl Clone for _ecc_25519_work
Source§fn clone(&self) -> _ecc_25519_work
fn clone(&self) -> _ecc_25519_work
Returns a duplicate 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 moreSource§impl Debug for _ecc_25519_work
impl Debug for _ecc_25519_work
impl Copy for _ecc_25519_work
Auto Trait Implementations§
impl Freeze for _ecc_25519_work
impl RefUnwindSafe for _ecc_25519_work
impl Send for _ecc_25519_work
impl Sync for _ecc_25519_work
impl Unpin for _ecc_25519_work
impl UnwindSafe for _ecc_25519_work
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