[][src]Struct easy_ssl::issuer::Issuer

pub struct Issuer {
    pub common_name: String,
    pub org: String,
    pub location: String,
    pub state: String,
    pub country: String,
}

Fields

common_name: Stringorg: Stringlocation: Stringstate: Stringcountry: String

Methods

impl Issuer[src]

pub fn new() -> Issuer[src]

pub fn set_country(&mut self, country: String)[src]

pub fn set_org(&mut self, org: String)[src]

pub fn set_location(&mut self, location: String)[src]

pub fn set_state(&mut self, state: String)[src]

pub fn set_common_name(&mut self, common_name: String)[src]

pub fn to_hash_map(&mut self) -> HashMap<String, String>[src]

Trait Implementations

impl Clone for Issuer[src]

impl Debug for Issuer[src]

Auto Trait Implementations

impl RefUnwindSafe for Issuer

impl Send for Issuer

impl Sync for Issuer

impl Unpin for Issuer

impl UnwindSafe for Issuer

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.