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