#[repr(C)]pub struct sxt_ristretto255 {
pub X: [u64; 5],
pub Y: [u64; 5],
pub Z: [u64; 5],
pub T: [u64; 5],
}Expand description
encodes an element of the curve25519 group
Fields§
§X: [u64; 5]§Y: [u64; 5]§Z: [u64; 5]§T: [u64; 5]Trait Implementations§
Source§impl Clone for sxt_ristretto255
impl Clone for sxt_ristretto255
Source§fn clone(&self) -> sxt_ristretto255
fn clone(&self) -> sxt_ristretto255
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 sxt_ristretto255
impl Debug for sxt_ristretto255
impl Copy for sxt_ristretto255
Auto Trait Implementations§
impl Freeze for sxt_ristretto255
impl RefUnwindSafe for sxt_ristretto255
impl Send for sxt_ristretto255
impl Sync for sxt_ristretto255
impl Unpin for sxt_ristretto255
impl UnwindSafe for sxt_ristretto255
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