[][src]Struct rusoto_polly::ListSpeechSynthesisTasksOutput

pub struct ListSpeechSynthesisTasksOutput {
    pub next_token: Option<String>,
    pub synthesis_tasks: Option<Vec<SynthesisTask>>,
}

Fields

next_token: Option<String>

An opaque pagination token returned from the previous List operation in this request. If present, this indicates where to continue the listing.

synthesis_tasks: Option<Vec<SynthesisTask>>

List of SynthesisTask objects that provides information from the specified task in the list request, including output format, creation time, task status, and so on.

Trait Implementations

impl Clone for ListSpeechSynthesisTasksOutput[src]

impl Debug for ListSpeechSynthesisTasksOutput[src]

impl Default for ListSpeechSynthesisTasksOutput[src]

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

impl PartialEq<ListSpeechSynthesisTasksOutput> for ListSpeechSynthesisTasksOutput[src]

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