#[repr(C)]pub struct SigverifySpxKey {
pub data: [u32; 8],
}
Expand description
A type that holds 8 32-bit words for SPHINCS+ public keys.
Fields§
§data: [u32; 8]
Trait Implementations§
Source§impl Clone for SigverifySpxKey
impl Clone for SigverifySpxKey
Source§fn clone(&self) -> SigverifySpxKey
fn clone(&self) -> SigverifySpxKey
Returns a copy 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 SigverifySpxKey
impl Debug for SigverifySpxKey
Source§impl Default for SigverifySpxKey
impl Default for SigverifySpxKey
Source§fn default() -> SigverifySpxKey
fn default() -> SigverifySpxKey
Returns the “default value” for a type. Read more
Source§impl FromBytes for SigverifySpxKey
impl FromBytes for SigverifySpxKey
Source§impl FromZeros for SigverifySpxKey
impl FromZeros for SigverifySpxKey
Source§impl IntoBytes for SigverifySpxKey
impl IntoBytes for SigverifySpxKey
§fn as_mut_bytes(&mut self) -> &mut [u8] ⓘwhere
Self: FromBytes,
fn as_mut_bytes(&mut self) -> &mut [u8] ⓘwhere
Self: FromBytes,
Gets the bytes of this value mutably. Read more
§fn write_to(&self, dst: &mut [u8]) -> Result<(), SizeError<&Self, &mut [u8]>>where
Self: Immutable,
fn write_to(&self, dst: &mut [u8]) -> Result<(), SizeError<&Self, &mut [u8]>>where
Self: Immutable,
Source§impl TryFromBytes for SigverifySpxKey
impl TryFromBytes for SigverifySpxKey
§fn try_read_from_bytes(
source: &[u8],
) -> Result<Self, ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
fn try_read_from_bytes(
source: &[u8],
) -> Result<Self, ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
§fn try_read_from_prefix(
source: &[u8],
) -> Result<(Self, &[u8]), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
fn try_read_from_prefix(
source: &[u8],
) -> Result<(Self, &[u8]), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
§fn try_read_from_suffix(
source: &[u8],
) -> Result<(&[u8], Self), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
fn try_read_from_suffix(
source: &[u8],
) -> Result<(&[u8], Self), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
impl Copy for SigverifySpxKey
impl Immutable for SigverifySpxKey
Auto Trait Implementations§
impl Freeze for SigverifySpxKey
impl RefUnwindSafe for SigverifySpxKey
impl Send for SigverifySpxKey
impl Sync for SigverifySpxKey
impl Unpin for SigverifySpxKey
impl UnwindSafe for SigverifySpxKey
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