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

pub struct Update { /* fields omitted */ }

Type representing a json equivalent to the publish element, that updates an existing object: https://tools.ietf.org/html/rfc8181#section-3.2

Implementations

impl Update[src]

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

pub fn with_hash_tag(
    uri: Rsync,
    content: Base64,
    old_hash: HexEncodedHash
) -> 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 hash(&self) -> &HexEncodedHash[src]

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

Trait Implementations

impl Clone for Update[src]

impl Debug for Update[src]

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

impl Eq for Update[src]

impl From<Update> for UpdateElement[src]

impl PartialEq<Update> for Update[src]

impl Serialize for Update[src]

impl StructuralEq for Update[src]

impl StructuralPartialEq for Update[src]

Auto Trait Implementations

impl RefUnwindSafe for Update

impl Send for Update

impl Sync for Update

impl Unpin for Update

impl UnwindSafe for Update

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.