[][src]Struct rusoto_kinesis_video_archived_media::Fragment

pub struct Fragment {
    pub fragment_length_in_milliseconds: Option<i64>,
    pub fragment_number: Option<String>,
    pub fragment_size_in_bytes: Option<i64>,
    pub producer_timestamp: Option<f64>,
    pub server_timestamp: Option<f64>,
}

Represents a segment of video or other time-delimited data.

Fields

fragment_length_in_milliseconds: Option<i64>

The playback duration or other time value associated with the fragment.

fragment_number: Option<String>

The unique identifier of the fragment. This value monotonically increases based on the ingestion order.

fragment_size_in_bytes: Option<i64>

The total fragment size, including information about the fragment and contained media data.

producer_timestamp: Option<f64>

The timestamp from the producer corresponding to the fragment.

server_timestamp: Option<f64>

The timestamp from the AWS server corresponding to the fragment.

Trait Implementations

impl Clone for Fragment[src]

impl Debug for Fragment[src]

impl Default for Fragment[src]

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

impl PartialEq<Fragment> for Fragment[src]

impl StructuralPartialEq for Fragment[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> 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> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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.