[][src]Struct mpls::types::Clip

pub struct Clip {
    pub file_name: String,
    pub codec_id: String,
}

A clip file, also known as a segment.

This identifies the playable stream file. file_name consists of 5 numbers (e.g. "00055"), and codec_id of 4 letters which will usually be "M2TS" on blu-rays.

Fields

file_name: Stringcodec_id: String

Trait Implementations

impl Clone for Clip[src]

impl Debug for Clip[src]

Auto Trait Implementations

impl RefUnwindSafe for Clip

impl Send for Clip

impl Sync for Clip

impl Unpin for Clip

impl UnwindSafe for Clip

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.