[][src]Struct cqc::ReqCmd

pub struct ReqCmd {
    pub cmd_hdr: CmdHdr,
    pub xtra_hdr: XtraHdr,
}

Command Request

A command request follows the CQC Header for certain message types. It consists of the Command Header and for certain command types an additional header is required.

Fields

cmd_hdr: CmdHdrxtra_hdr: XtraHdr

Methods

impl ReqCmd[src]

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

Trait Implementations

impl PartialEq<ReqCmd> for ReqCmd[src]

impl Debug for ReqCmd[src]

impl Serialize for ReqCmd[src]

Auto Trait Implementations

impl Send for ReqCmd

impl Sync for ReqCmd

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.