Struct zenoh_protocol::proto::ZenohMessage[][src]

pub struct ZenohMessage {
    pub header: u8,
    pub body: ZenohBody,
    pub reliability: Reliability,
    pub congestion_control: CongestionControl,
    pub reply_context: Option<ReplyContext>,
    pub attachment: Option<Attachment>,
}

Fields

header: u8body: ZenohBodyreliability: Reliabilitycongestion_control: CongestionControlreply_context: Option<ReplyContext>attachment: Option<Attachment>

Implementations

impl ZenohMessage[src]

pub fn make_declare(
    declarations: Vec<Declaration>,
    attachment: Option<Attachment>
) -> ZenohMessage
[src]

pub fn make_data(
    key: ResKey,
    payload: RBuf,
    reliability: Reliability,
    congestion_control: CongestionControl,
    data_info: Option<DataInfo>,
    reply_context: Option<ReplyContext>,
    attachment: Option<Attachment>
) -> ZenohMessage
[src]

pub fn make_unit(
    reliability: Reliability,
    congestion_control: CongestionControl,
    reply_context: Option<ReplyContext>,
    attachment: Option<Attachment>
) -> ZenohMessage
[src]

pub fn make_pull(
    is_final: bool,
    key: ResKey,
    pull_id: ZInt,
    max_samples: Option<ZInt>,
    attachment: Option<Attachment>
) -> ZenohMessage
[src]

pub fn make_query(
    key: ResKey,
    predicate: String,
    qid: ZInt,
    target: Option<QueryTarget>,
    consolidation: QueryConsolidation,
    attachment: Option<Attachment>
) -> ZenohMessage
[src]

pub fn is_reliable(&self) -> bool[src]

pub fn is_droppable(&self) -> bool[src]

pub fn is_reply(&self) -> bool[src]

Trait Implementations

impl Clone for ZenohMessage[src]

impl Debug for ZenohMessage[src]

impl Display for ZenohMessage[src]

impl PartialEq<ZenohMessage> for ZenohMessage[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,