pub struct RsaPublicKeyInfo {
pub key_size: Option<i32>,
}Expand description
Information of a RSA public key.
This type is not used in any activity, and only used as part of another schema.
Fields§
§key_size: Option<i32>Key size in bits (size of the modulus).
Trait Implementations§
Source§impl Clone for RsaPublicKeyInfo
impl Clone for RsaPublicKeyInfo
Source§fn clone(&self) -> RsaPublicKeyInfo
fn clone(&self) -> RsaPublicKeyInfo
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 RsaPublicKeyInfo
impl Debug for RsaPublicKeyInfo
Source§impl Default for RsaPublicKeyInfo
impl Default for RsaPublicKeyInfo
Source§fn default() -> RsaPublicKeyInfo
fn default() -> RsaPublicKeyInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RsaPublicKeyInfo
impl<'de> Deserialize<'de> for RsaPublicKeyInfo
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 Serialize for RsaPublicKeyInfo
impl Serialize for RsaPublicKeyInfo
impl Part for RsaPublicKeyInfo
Auto Trait Implementations§
impl Freeze for RsaPublicKeyInfo
impl RefUnwindSafe for RsaPublicKeyInfo
impl Send for RsaPublicKeyInfo
impl Sync for RsaPublicKeyInfo
impl Unpin for RsaPublicKeyInfo
impl UnwindSafe for RsaPublicKeyInfo
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