pub struct DsaPublicKeyInfo {
pub key_size: Option<i32>,
}Expand description
Information of a DSA 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 parameter P).
Trait Implementations§
Source§impl Clone for DsaPublicKeyInfo
impl Clone for DsaPublicKeyInfo
Source§fn clone(&self) -> DsaPublicKeyInfo
fn clone(&self) -> DsaPublicKeyInfo
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 DsaPublicKeyInfo
impl Debug for DsaPublicKeyInfo
Source§impl Default for DsaPublicKeyInfo
impl Default for DsaPublicKeyInfo
Source§fn default() -> DsaPublicKeyInfo
fn default() -> DsaPublicKeyInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DsaPublicKeyInfo
impl<'de> Deserialize<'de> for DsaPublicKeyInfo
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 DsaPublicKeyInfo
impl Serialize for DsaPublicKeyInfo
impl Part for DsaPublicKeyInfo
Auto Trait Implementations§
impl Freeze for DsaPublicKeyInfo
impl RefUnwindSafe for DsaPublicKeyInfo
impl Send for DsaPublicKeyInfo
impl Sync for DsaPublicKeyInfo
impl Unpin for DsaPublicKeyInfo
impl UnwindSafe for DsaPublicKeyInfo
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