pub struct TransparentRSAPublicKey {
pub modulus: Vec<u8>,
pub public_exponent: Vec<u8>,
}
Expand description
See KMIP 1.0 section 2.1.7.5 Transparent RSA Public Key.
Fields§
§modulus: Vec<u8>
§public_exponent: Vec<u8>
Trait Implementations§
Source§impl Clone for TransparentRSAPublicKey
impl Clone for TransparentRSAPublicKey
Source§fn clone(&self) -> TransparentRSAPublicKey
fn clone(&self) -> TransparentRSAPublicKey
Returns a duplicate 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 TransparentRSAPublicKey
impl Debug for TransparentRSAPublicKey
Source§impl<'de> Deserialize<'de> for TransparentRSAPublicKey
impl<'de> Deserialize<'de> for TransparentRSAPublicKey
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TransparentRSAPublicKey
impl PartialEq for TransparentRSAPublicKey
Source§impl Serialize for TransparentRSAPublicKey
impl Serialize for TransparentRSAPublicKey
impl Eq for TransparentRSAPublicKey
impl StructuralPartialEq for TransparentRSAPublicKey
Auto Trait Implementations§
impl Freeze for TransparentRSAPublicKey
impl RefUnwindSafe for TransparentRSAPublicKey
impl Send for TransparentRSAPublicKey
impl Sync for TransparentRSAPublicKey
impl Unpin for TransparentRSAPublicKey
impl UnwindSafe for TransparentRSAPublicKey
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