[][src]Struct krill::commons::api::Publish

pub struct Publish { /* fields omitted */ }

Type representing a json equivalent to the publish element, that does not update any existing object, defined in: https://tools.ietf.org/html/rfc8181#section-3.1

Implementations

impl Publish[src]

pub fn new(tag: Option<String>, uri: Rsync, content: Base64) -> Self[src]

pub fn with_hash_tag(uri: Rsync, content: Base64) -> Self[src]

pub fn tag(&self) -> &Option<String>[src]

pub fn tag_for_xml(&self) -> String[src]

pub fn uri(&self) -> &Rsync[src]

pub fn content(&self) -> &Base64[src]

pub fn unpack(self) -> (Option<String>, Rsync, Base64)[src]

Trait Implementations

impl Clone for Publish[src]

impl Debug for Publish[src]

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

impl Eq for Publish[src]

impl From<Publish> for PublishElement[src]

impl PartialEq<Publish> for Publish[src]

impl Serialize for Publish[src]

impl StructuralEq for Publish[src]

impl StructuralPartialEq for Publish[src]

Auto Trait Implementations

impl RefUnwindSafe for Publish

impl Send for Publish

impl Sync for Publish

impl Unpin for Publish

impl UnwindSafe for Publish

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.