Struct nethsm_sdk_rs::models::key_private_data::KeyPrivateData
source · pub struct KeyPrivateData {
pub prime_p: Option<String>,
pub prime_q: Option<String>,
pub public_exponent: Option<String>,
pub data: Option<String>,
}Fields§
§prime_p: Option<String>§prime_q: Option<String>§public_exponent: Option<String>§data: Option<String>Implementations§
source§impl KeyPrivateData
impl KeyPrivateData
pub fn new() -> KeyPrivateData
Trait Implementations§
source§impl Clone for KeyPrivateData
impl Clone for KeyPrivateData
source§fn clone(&self) -> KeyPrivateData
fn clone(&self) -> KeyPrivateData
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 KeyPrivateData
impl Debug for KeyPrivateData
source§impl Default for KeyPrivateData
impl Default for KeyPrivateData
source§fn default() -> KeyPrivateData
fn default() -> KeyPrivateData
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for KeyPrivateData
impl<'de> Deserialize<'de> for KeyPrivateData
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 KeyPrivateData
impl PartialEq for KeyPrivateData
source§fn eq(&self, other: &KeyPrivateData) -> bool
fn eq(&self, other: &KeyPrivateData) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for KeyPrivateData
impl Serialize for KeyPrivateData
impl StructuralPartialEq for KeyPrivateData
Auto Trait Implementations§
impl RefUnwindSafe for KeyPrivateData
impl Send for KeyPrivateData
impl Sync for KeyPrivateData
impl Unpin for KeyPrivateData
impl UnwindSafe for KeyPrivateData
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