[][src]Struct rsocket_rust::frame::Setup

pub struct Setup { /* fields omitted */ }

Methods

impl Setup[src]

pub fn decode(flag: u16, b: &mut BytesMut) -> RSocketResult<Setup>[src]

pub fn builder(stream_id: u32, flag: u16) -> SetupBuilder[src]

pub fn get_version(&self) -> Version[src]

pub fn get_keepalive(&self) -> Duration[src]

pub fn get_lifetime(&self) -> Duration[src]

pub fn get_token(&self) -> Option<Bytes>[src]

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

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

pub fn get_metadata(&self) -> &Option<Bytes>[src]

pub fn get_data(&self) -> &Option<Bytes>[src]

pub fn split(self) -> (Option<Bytes>, Option<Bytes>)[src]

Trait Implementations

impl Writeable for Setup[src]

impl From<Setup> for Payload[src]

impl From<Setup> for SetupPayload[src]

impl Debug for Setup[src]

Auto Trait Implementations

impl Unpin for Setup

impl Sync for Setup

impl Send for Setup

impl UnwindSafe for Setup

impl RefUnwindSafe for Setup

Blanket Implementations

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

impl<T> From<T> for 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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T