[][src]Enum parrot_ar_drone::VideoCodec

pub enum VideoCodec {
    MP4_360p,
    H264_360p,
    MP4_360pH264_720p,
    MP4_360pH264_360p,
    H264_720p,
}

First is the codec used for streaming on UDP 5555, second (if exists) is for recording on TCP 5553.

Variants

MP4_360p
H264_360p
MP4_360pH264_720p
MP4_360pH264_360p
H264_720p

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