Struct sgx_types::types::Rsa3072Signature
source · [−]#[repr(C)]pub struct Rsa3072Signature {
pub signature: [u8; 384],
}
Fields
signature: [u8; 384]
Trait Implementations
sourceimpl AsMut<[u8; 384]> for Rsa3072Signature
impl AsMut<[u8; 384]> for Rsa3072Signature
sourceimpl AsRef<[u8; 384]> for Rsa3072Signature
impl AsRef<[u8; 384]> for Rsa3072Signature
sourceimpl Clone for Rsa3072Signature
impl Clone for Rsa3072Signature
sourcefn clone(&self) -> Rsa3072Signature
fn clone(&self) -> Rsa3072Signature
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 Rsa3072Signature
impl Debug for Rsa3072Signature
sourceimpl Default for Rsa3072Signature
impl Default for Rsa3072Signature
sourcefn default() -> Rsa3072Signature
fn default() -> Rsa3072Signature
Returns the “default value” for a type. Read more
sourceimpl From<&[u8; 384]> for Rsa3072Signature
impl From<&[u8; 384]> for Rsa3072Signature
sourcefn from(array: &[u8; 384]) -> Rsa3072Signature
fn from(array: &[u8; 384]) -> Rsa3072Signature
Converts to this type from the input type.
sourceimpl From<[u8; 384]> for Rsa3072Signature
impl From<[u8; 384]> for Rsa3072Signature
sourcefn from(array: [u8; 384]) -> Rsa3072Signature
fn from(array: [u8; 384]) -> Rsa3072Signature
Converts to this type from the input type.
sourceimpl PartialEq<Rsa3072Signature> for Rsa3072Signature
impl PartialEq<Rsa3072Signature> for Rsa3072Signature
sourcefn eq(&self, other: &Rsa3072Signature) -> bool
fn eq(&self, other: &Rsa3072Signature) -> bool
sourceimpl TryFrom<&[u8]> for Rsa3072Signature
impl TryFrom<&[u8]> for Rsa3072Signature
type Error = TryFromSliceError
type Error = TryFromSliceError
The type returned in the event of a conversion error.
sourcefn try_from(slice: &[u8]) -> Result<Rsa3072Signature, Self::Error>
fn try_from(slice: &[u8]) -> Result<Rsa3072Signature, Self::Error>
Performs the conversion.
impl BytewiseEquality for Rsa3072Signature
impl ContiguousMemory for Rsa3072Signature
impl Copy for Rsa3072Signature
impl Eq for Rsa3072Signature
impl StructuralEq for Rsa3072Signature
impl StructuralPartialEq for Rsa3072Signature
Auto Trait Implementations
impl RefUnwindSafe for Rsa3072Signature
impl Send for Rsa3072Signature
impl Sync for Rsa3072Signature
impl Unpin for Rsa3072Signature
impl UnwindSafe for Rsa3072Signature
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