[][src]Enum onc_rpc::ReplyBody

pub enum ReplyBody<T, P> where
    T: AsRef<[u8]>,
    P: AsRef<[u8]>, 
{ Accepted(AcceptedReply<T, P>), Denied(RejectedReply), }

ReplyBody defines the response to an RPC invocation.

Variants

Accepted(AcceptedReply<T, P>)

The server accepted the request credentials.

The server rejected the request credentials.

Implementations

impl<T, P> ReplyBody<T, P> where
    T: AsRef<[u8]>,
    P: AsRef<[u8]>, 
[src]

pub fn serialise_into(&self, buf: &mut Cursor<Vec<u8>>) -> Result<(), Error>[src]

Serialises this ReplyBody into buf, advancing the cursor position by serialised_len bytes.

pub fn serialised_len(&self) -> u32[src]

Returns the on-wire length of this ReplyBody once serialised, including the message header.

Trait Implementations

impl<T: Debug, P: Debug> Debug for ReplyBody<T, P> where
    T: AsRef<[u8]>,
    P: AsRef<[u8]>, 
[src]

impl<T: PartialEq, P: PartialEq> PartialEq<ReplyBody<T, P>> for ReplyBody<T, P> where
    T: AsRef<[u8]>,
    P: AsRef<[u8]>, 
[src]

impl<T, P> StructuralPartialEq for ReplyBody<T, P> where
    T: AsRef<[u8]>,
    P: AsRef<[u8]>, 
[src]

impl<'a> TryFrom<&'a [u8]> for ReplyBody<&'a [u8], &'a [u8]>[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Bytes> for ReplyBody<Bytes, Bytes>[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl<T, P> RefUnwindSafe for ReplyBody<T, P> where
    P: RefUnwindSafe,
    T: RefUnwindSafe
[src]

impl<T, P> Send for ReplyBody<T, P> where
    P: Send,
    T: Send
[src]

impl<T, P> Sync for ReplyBody<T, P> where
    P: Sync,
    T: Sync
[src]

impl<T, P> Unpin for ReplyBody<T, P> where
    P: Unpin,
    T: Unpin
[src]

impl<T, P> UnwindSafe for ReplyBody<T, P> where
    P: UnwindSafe,
    T: UnwindSafe
[src]

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.