#[repr(transparent)]pub struct CompressedDecaf(pub [u8; 56]);Expand description
A compressed decaf point
Tuple Fields§
§0: [u8; 56]Implementations§
Trait Implementations§
Source§impl Clone for CompressedDecaf
impl Clone for CompressedDecaf
Source§fn clone(&self) -> CompressedDecaf
fn clone(&self) -> CompressedDecaf
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 ConditionallySelectable for CompressedDecaf
impl ConditionallySelectable for CompressedDecaf
Source§fn conditional_select(a: &Self, b: &Self, choice: Choice) -> Self
fn conditional_select(a: &Self, b: &Self, choice: Choice) -> Self
Source§fn conditional_assign(&mut self, other: &Self, choice: Choice)
fn conditional_assign(&mut self, other: &Self, choice: Choice)
Source§fn conditional_swap(a: &mut Self, b: &mut Self, choice: Choice)
fn conditional_swap(a: &mut Self, b: &mut Self, choice: Choice)
Conditionally swap
self and other if choice == 1; otherwise,
reassign both unto themselves. Read moreSource§impl ConstantTimeEq for CompressedDecaf
impl ConstantTimeEq for CompressedDecaf
Source§impl Debug for CompressedDecaf
impl Debug for CompressedDecaf
Source§impl Default for CompressedDecaf
impl Default for CompressedDecaf
Source§fn default() -> CompressedDecaf
fn default() -> CompressedDecaf
Returns the “default value” for a type. Read more
Source§impl PartialEq for CompressedDecaf
impl PartialEq for CompressedDecaf
Source§impl TryFrom<&[u8]> for CompressedDecaf
Available on crate feature alloc only.
impl TryFrom<&[u8]> for CompressedDecaf
Available on crate feature
alloc only.impl Copy for CompressedDecaf
impl DefaultIsZeroes for CompressedDecaf
impl Eq for CompressedDecaf
Auto Trait Implementations§
impl Freeze for CompressedDecaf
impl RefUnwindSafe for CompressedDecaf
impl Send for CompressedDecaf
impl Sync for CompressedDecaf
impl Unpin for CompressedDecaf
impl UnsafeUnpin for CompressedDecaf
impl UnwindSafe for CompressedDecaf
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