[][src]Struct uvc::Frame

pub struct Frame { /* fields omitted */ }

Frame containing the image data

Implementations

impl Frame[src]

pub fn to_rgb(&self) -> Result<Frame>[src]

Convert to rgb format

pub fn to_bgr(&self) -> Result<Frame>[src]

Convert to bgr format

#[must_use]pub fn to_bytes(&self) -> &[u8][src]

Get the raw image data

#[must_use]pub fn width(&self) -> u32[src]

Width of the captured frame

#[must_use]pub fn height(&self) -> u32[src]

Heigth of the captured frame

#[must_use]pub fn format(&self) -> FrameFormat[src]

Format of the captured frame

#[must_use]pub fn sequence(&self) -> u32[src]

Monotonically increasing frame number

pub fn duplicate(&self) -> Result<Frame>[src]

Clones a frame

Trait Implementations

impl Debug for Frame[src]

impl Drop for Frame[src]

impl Send for Frame[src]

impl Sync for Frame[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, 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.