[][src]Struct rusoto_rekognition::GetSegmentDetectionResponse

pub struct GetSegmentDetectionResponse {
    pub audio_metadata: Option<Vec<AudioMetadata>>,
    pub job_status: Option<String>,
    pub next_token: Option<String>,
    pub segments: Option<Vec<SegmentDetection>>,
    pub selected_segment_types: Option<Vec<SegmentTypeInfo>>,
    pub status_message: Option<String>,
    pub video_metadata: Option<Vec<VideoMetadata>>,
}

Fields

audio_metadata: Option<Vec<AudioMetadata>>

An array of objects. There can be multiple audio streams. Each AudioMetadata object contains metadata for a single audio stream. Audio information in an AudioMetadata objects includes the audio codec, the number of audio channels, the duration of the audio stream, and the sample rate. Audio metadata is returned in each page of information returned by GetSegmentDetection.

job_status: Option<String>

Current status of the segment detection job.

next_token: Option<String>

If the previous response was incomplete (because there are more labels to retrieve), Amazon Rekognition Video returns a pagination token in the response. You can use this pagination token to retrieve the next set of text.

segments: Option<Vec<SegmentDetection>>

An array of segments detected in a video.

selected_segment_types: Option<Vec<SegmentTypeInfo>>

An array containing the segment types requested in the call to StartSegmentDetection.

status_message: Option<String>

If the job fails, StatusMessage provides a descriptive error message.

video_metadata: Option<Vec<VideoMetadata>>

Currently, Amazon Rekognition Video returns a single object in the VideoMetadata array. The object contains information about the video stream in the input file that Amazon Rekognition Video chose to analyze. The VideoMetadata object includes the video codec, video format and other information. Video metadata is returned in each page of information returned by GetSegmentDetection.

Trait Implementations

impl Clone for GetSegmentDetectionResponse[src]

impl Debug for GetSegmentDetectionResponse[src]

impl Default for GetSegmentDetectionResponse[src]

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

impl PartialEq<GetSegmentDetectionResponse> for GetSegmentDetectionResponse[src]

impl StructuralPartialEq for GetSegmentDetectionResponse[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.