Struct sgx_types::types::Rsa3072Key
source · #[repr(C)]pub struct Rsa3072Key {
pub modulus: [u8; 384],
pub d: [u8; 384],
pub e: [u8; 4],
}
Fields§
§modulus: [u8; 384]
§d: [u8; 384]
§e: [u8; 4]
Trait Implementations§
source§impl Clone for Rsa3072Key
impl Clone for Rsa3072Key
source§fn clone(&self) -> Rsa3072Key
fn clone(&self) -> Rsa3072Key
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 Rsa3072Key
impl Debug for Rsa3072Key
source§impl Default for Rsa3072Key
impl Default for Rsa3072Key
source§fn default() -> Rsa3072Key
fn default() -> Rsa3072Key
Returns the “default value” for a type. Read more
source§impl From<(Rsa3072PrivKey, Rsa3072PubKey)> for Rsa3072Key
impl From<(Rsa3072PrivKey, Rsa3072PubKey)> for Rsa3072Key
source§fn from(key_pair: (Rsa3072PrivKey, Rsa3072PubKey)) -> Rsa3072Key
fn from(key_pair: (Rsa3072PrivKey, Rsa3072PubKey)) -> Rsa3072Key
Converts to this type from the input type.
source§impl From<Rsa3072Key> for (Rsa3072PrivKey, Rsa3072PubKey)
impl From<Rsa3072Key> for (Rsa3072PrivKey, Rsa3072PubKey)
source§fn from(key_pair: Rsa3072Key) -> (Rsa3072PrivKey, Rsa3072PubKey)
fn from(key_pair: Rsa3072Key) -> (Rsa3072PrivKey, Rsa3072PubKey)
Converts to this type from the input type.
source§impl PartialEq for Rsa3072Key
impl PartialEq for Rsa3072Key
source§fn eq(&self, other: &Rsa3072Key) -> bool
fn eq(&self, other: &Rsa3072Key) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<&[u8]> for Rsa3072Key
impl TryFrom<&[u8]> for Rsa3072Key
§type Error = TryFromSliceError
type Error = TryFromSliceError
The type returned in the event of a conversion error.
impl BytewiseEquality for Rsa3072Key
impl ContiguousMemory for Rsa3072Key
impl Copy for Rsa3072Key
impl Eq for Rsa3072Key
impl StructuralEq for Rsa3072Key
impl StructuralPartialEq for Rsa3072Key
Auto Trait Implementations§
impl RefUnwindSafe for Rsa3072Key
impl Send for Rsa3072Key
impl Sync for Rsa3072Key
impl Unpin for Rsa3072Key
impl UnwindSafe for Rsa3072Key
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