[][src]Struct krill::commons::remote::api::CmsClientInfo

pub struct CmsClientInfo { /* fields omitted */ }

Implementations

impl CmsClientInfo[src]

pub fn new(
    handle: Handle,
    cert: IdCert,
    key_id: KeyIdentifier,
    publication_uri: Https
) -> Self
[src]

pub fn handle(&self) -> &Handle[src]

pub fn set_handle(&mut self, handle: Handle)[src]

pub fn server_cert(&self) -> &IdCert[src]

pub fn set_server_cert(&mut self, cert: IdCert)[src]

pub fn key_id(&self) -> KeyIdentifier[src]

pub fn set_key_id(&mut self, key_id: KeyIdentifier)[src]

pub fn publication_uri(&self) -> &Https[src]

pub fn set_publication_uri(&mut self, uri: Https)[src]

Trait Implementations

impl Clone for CmsClientInfo[src]

impl Debug for CmsClientInfo[src]

impl<'de> Deserialize<'de> for CmsClientInfo[src]

impl Serialize for CmsClientInfo[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.