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

pub struct ErrorReply { /* fields omitted */ }

This type represents the error report as described in https://tools.ietf.org/html/rfc8181#section-3.5 and 3.6

Implementations

impl ErrorReply[src]

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

Decodes XML into an ErrorReport.

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

Encodes an ErrorReport into XML.

impl ErrorReply[src]

pub fn build() -> ErrorReplyBuilder[src]

Creates an ErrorReplyBuilder, to which ErrorReply-s can be added.

pub fn build_with_capacity(n: usize) -> ErrorReplyBuilder[src]

Creates an ErrorReplyBuilder, to which an expect number of ErrorReply-s can be added. More, or less elements can be added, but suggesting the right capacity will make things more efficient as vec growth is avoided.

Trait Implementations

impl Clone for ErrorReply[src]

impl Debug for ErrorReply[src]

impl Display for ErrorReply[src]

impl Eq for ErrorReply[src]

impl PartialEq<ErrorReply> for ErrorReply[src]

impl StructuralEq for ErrorReply[src]

impl StructuralPartialEq for ErrorReply[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<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> ToString for T where
    T: Display + ?Sized
[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.