[][src]Enum arsdk_rs::frame::BufferID

pub enum BufferID {
    PING,
    PONG,
    CDNonAck,
    CDAck,
    CDEmergency,
    CDVideoAck,
    DCVideo,
    DCEvent,
    DCNavdata,
}

Variants

PING

pings from device

PONG

respond to pings

CDNonAck

C: #define BD_NET_CD_NONACK_ID 10

PyParrot: 'SEND_NO_ACK': 10, # not-ack commandsandsensors (piloting and camera rotations)

CDAck

C: #define BD_NET_CD_ACK_ID 11

PyParrot: 'SEND_WITH_ACK': 11, # ack commandsandsensors (all piloting commandsandsensors)

CDEmergency

C: #define BD_NET_CD_EMERGENCY_ID 12

PyParrot: 'SEND_HIGH_PRIORITY': 12, # emergency commandsandsensors

CDVideoAck

C: #define BD_NET_CD_VIDEO_ACK_ID 13

PyParrot: 'VIDEO_ACK': 13, # ack for video

DCVideo

C: #define BD_NET_DC_VIDEO_DATA_ID 125

PyParrot: 'VIDEO_DATA' : 125, # video data

DCEvent

C: #define BD_NET_DC_EVENT_ID 126

PyParrot:

DCNavdata

C: #define BD_NET_DC_NAVDATA_ID 127

PyParrot: 'ACK_DRONE_DATA' : 127, # drone data that needs an ack

Trait Implementations

impl Clone for BufferID[src]

impl Copy for BufferID[src]

impl Debug for BufferID[src]

impl Eq for BufferID[src]

impl Hash for BufferID[src]

impl Into<u8> for BufferID[src]

impl PartialEq<BufferID> for BufferID[src]

impl StructuralEq for BufferID[src]

impl StructuralPartialEq for BufferID[src]

impl TryFrom<u8> for BufferID[src]

type Error = AnyError

The type returned in the event of a conversion error.

impl<'a> TryFromCtx<'a, Endian, [u8]> for BufferID[src]

type Error = MessageError

impl<'a> TryIntoCtx<Endian, [u8]> for BufferID[src]

type Error = MessageError

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> 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.