[][src]Struct cec_rs::CecCommand

pub struct CecCommand {
    pub initiator: CecLogicalAddress,
    pub destination: CecLogicalAddress,
    pub ack: bool,
    pub eom: bool,
    pub opcode: CecOpcode,
    pub parameters: CecDatapacket,
    pub opcode_set: bool,
    pub transmit_timeout: Duration,
}

Fields

initiator: CecLogicalAddress

< the logical address of the initiator of this message

destination: CecLogicalAddress

< the logical address of the destination of this message

ack: bool

< 1 when the ACK bit is set, 0 otherwise

eom: bool

< 1 when the EOM bit is set, 0 otherwise

opcode: CecOpcode

< the opcode of this message

parameters: CecDatapacket

< the parameters attached to this message

opcode_set: bool

< 1 when an opcode is set, 0 otherwise (POLL message)

transmit_timeout: Duration

< the timeout to use in ms

Trait Implementations

impl From<CecCommand> for cec_command[src]

impl Clone for CecCommand[src]

impl TryFrom<cec_command> for CecCommand[src]

type Error = TryFromCecCommandError

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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