#[non_exhaustive]pub struct StartTranscriptionJobOutput {
pub transcription_job: Option<TranscriptionJob>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.transcription_job: Option<TranscriptionJob>Provides detailed information about the current transcription job, including job status and, if applicable, failure reason.
Implementations§
source§impl StartTranscriptionJobOutput
impl StartTranscriptionJobOutput
sourcepub fn transcription_job(&self) -> Option<&TranscriptionJob>
pub fn transcription_job(&self) -> Option<&TranscriptionJob>
Provides detailed information about the current transcription job, including job status and, if applicable, failure reason.
source§impl StartTranscriptionJobOutput
impl StartTranscriptionJobOutput
sourcepub fn builder() -> StartTranscriptionJobOutputBuilder
pub fn builder() -> StartTranscriptionJobOutputBuilder
Creates a new builder-style object to manufacture StartTranscriptionJobOutput.
Trait Implementations§
source§impl Clone for StartTranscriptionJobOutput
impl Clone for StartTranscriptionJobOutput
source§fn clone(&self) -> StartTranscriptionJobOutput
fn clone(&self) -> StartTranscriptionJobOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for StartTranscriptionJobOutput
impl Debug for StartTranscriptionJobOutput
source§impl PartialEq<StartTranscriptionJobOutput> for StartTranscriptionJobOutput
impl PartialEq<StartTranscriptionJobOutput> for StartTranscriptionJobOutput
source§fn eq(&self, other: &StartTranscriptionJobOutput) -> bool
fn eq(&self, other: &StartTranscriptionJobOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for StartTranscriptionJobOutput
impl RequestId for StartTranscriptionJobOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for StartTranscriptionJobOutput
Auto Trait Implementations§
impl RefUnwindSafe for StartTranscriptionJobOutput
impl Send for StartTranscriptionJobOutput
impl Sync for StartTranscriptionJobOutput
impl Unpin for StartTranscriptionJobOutput
impl UnwindSafe for StartTranscriptionJobOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more