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