Struct sgx_types::types::Ec256Signature
source · [−]#[repr(C)]pub struct Ec256Signature {
pub x: [u32; 8],
pub y: [u32; 8],
}
Fields
x: [u32; 8]
y: [u32; 8]
Trait Implementations
sourceimpl AsMut<[u8; 64]> for Ec256Signature
impl AsMut<[u8; 64]> for Ec256Signature
sourceimpl AsRef<[u8; 64]> for Ec256Signature
impl AsRef<[u8; 64]> for Ec256Signature
sourceimpl Clone for Ec256Signature
impl Clone for Ec256Signature
sourcefn clone(&self) -> Ec256Signature
fn clone(&self) -> Ec256Signature
Returns a copy of the value. Read more
1.0.0const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for Ec256Signature
impl Debug for Ec256Signature
sourceimpl Default for Ec256Signature
impl Default for Ec256Signature
sourcefn default() -> Ec256Signature
fn default() -> Ec256Signature
Returns the “default value” for a type. Read more
sourceimpl From<&[u8; 64]> for Ec256Signature
impl From<&[u8; 64]> for Ec256Signature
sourcefn from(array: &[u8; 64]) -> Ec256Signature
fn from(array: &[u8; 64]) -> Ec256Signature
Converts to this type from the input type.
sourceimpl From<[u8; 64]> for Ec256Signature
impl From<[u8; 64]> for Ec256Signature
sourcefn from(array: [u8; 64]) -> Ec256Signature
fn from(array: [u8; 64]) -> Ec256Signature
Converts to this type from the input type.
sourceimpl PartialEq<Ec256Signature> for Ec256Signature
impl PartialEq<Ec256Signature> for Ec256Signature
sourcefn eq(&self, other: &Ec256Signature) -> bool
fn eq(&self, other: &Ec256Signature) -> bool
sourceimpl TryFrom<&[u8]> for Ec256Signature
impl TryFrom<&[u8]> for Ec256Signature
type Error = TryFromSliceError
type Error = TryFromSliceError
The type returned in the event of a conversion error.
sourcefn try_from(slice: &[u8]) -> Result<Ec256Signature, Self::Error>
fn try_from(slice: &[u8]) -> Result<Ec256Signature, Self::Error>
Performs the conversion.
impl BytewiseEquality for Ec256Signature
impl ContiguousMemory for Ec256Signature
impl Copy for Ec256Signature
impl Eq for Ec256Signature
impl StructuralEq for Ec256Signature
impl StructuralPartialEq for Ec256Signature
Auto Trait Implementations
impl RefUnwindSafe for Ec256Signature
impl Send for Ec256Signature
impl Sync for Ec256Signature
impl Unpin for Ec256Signature
impl UnwindSafe for Ec256Signature
Blanket Implementations
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more