Struct DistinguishedName
pub struct DistinguishedName {
pub country_name: Option<String>,
pub state_or_province_name: Option<String>,
pub locality_name: Option<String>,
pub organization_name: Option<String>,
pub organizational_unit_name: Option<String>,
pub common_name: String,
pub email_address: Option<String>,
}
Fields§
§country_name: Option<String>
§state_or_province_name: Option<String>
§locality_name: Option<String>
§organization_name: Option<String>
§organizational_unit_name: Option<String>
§common_name: String
§email_address: Option<String>
Implementations§
§impl DistinguishedName
impl DistinguishedName
pub fn new(common_name: String) -> DistinguishedName
Trait Implementations§
§impl Clone for DistinguishedName
impl Clone for DistinguishedName
§fn clone(&self) -> DistinguishedName
fn clone(&self) -> DistinguishedName
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 more§impl Debug for DistinguishedName
impl Debug for DistinguishedName
§impl Default for DistinguishedName
impl Default for DistinguishedName
§fn default() -> DistinguishedName
fn default() -> DistinguishedName
Returns the “default value” for a type. Read more
§impl<'de> Deserialize<'de> for DistinguishedName
impl<'de> Deserialize<'de> for DistinguishedName
§fn deserialize<__D>(
__deserializer: __D,
) -> Result<DistinguishedName, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<DistinguishedName, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl PartialEq for DistinguishedName
impl PartialEq for DistinguishedName
§impl Serialize for DistinguishedName
impl Serialize for DistinguishedName
§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for DistinguishedName
Auto Trait Implementations§
impl Freeze for DistinguishedName
impl RefUnwindSafe for DistinguishedName
impl Send for DistinguishedName
impl Sync for DistinguishedName
impl Unpin for DistinguishedName
impl UnwindSafe for DistinguishedName
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)