[][src]Struct krill::commons::remote::id::ParentInfo

pub struct ParentInfo { /* fields omitted */ }

This type stores details about a parent publication server: in particular, its identity and where it may be contacted.

Implementations

impl ParentInfo[src]

pub fn new(
    publisher_handle: Handle,
    id_cert: IdCert,
    service_uri: ServiceUri
) -> Self
[src]

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

The Identity Certificate used by the parent.

pub fn service_uri(&self) -> &ServiceUri[src]

The service URI where the client should send requests.

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

The name the publication server prefers to go by

Trait Implementations

impl Clone for ParentInfo[src]

impl Debug for ParentInfo[src]

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

impl Eq for ParentInfo[src]

impl PartialEq<ParentInfo> for ParentInfo[src]

impl Serialize for ParentInfo[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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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.