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