[][src]Struct krill::commons::remote::rfc8181::PublishDeltaXml

pub struct PublishDeltaXml;

Marker struct to give a name space to all code related to decoding, and encoding ['request::PublishDelta'].

Implementations

impl PublishDeltaXml[src]

pub fn decode<R: Read>(
    r: &mut XmlReader<R>
) -> Result<PublishDelta, MessageError>
[src]

Decodes a query XML structure. Expects that the outer element is processed by PublicationMessage::decode

impl PublishDeltaXml[src]

pub fn encode<W: Write>(
    delta: &PublishDelta,
    w: &mut XmlWriter<W>
) -> Result<(), Error>
[src]

Encodes a PublishDelta to XML in the given writer, for inclusion in an RFC8181 CMS.

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> From<T> for T[src]

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

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.