Struct google_photoslibrary1::api::Video[][src]

pub struct Video {
    pub camera_make: Option<String>,
    pub camera_model: Option<String>,
    pub fps: Option<f64>,
    pub status: Option<String>,
}

Metadata that is specific to a video, for example, fps and processing status. Some of these fields may be null or not included.

This type is not used in any activity, and only used as part of another schema.

Fields

camera_make: Option<String>

Brand of the camera with which the video was taken.

camera_model: Option<String>

Model of the camera with which the video was taken.

fps: Option<f64>

Frame rate of the video.

status: Option<String>

Processing status of the video.

Trait Implementations

impl Clone for Video[src]

impl Debug for Video[src]

impl Default for Video[src]

impl<'de> Deserialize<'de> for Video[src]

impl Part for Video[src]

impl Serialize for Video[src]

Auto Trait Implementations

impl RefUnwindSafe for Video

impl Send for Video

impl Sync for Video

impl Unpin for Video

impl UnwindSafe for Video

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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.