pub struct TranscriptOutputConfig {
pub gcs_uri: Option<String>,
}Expand description
Specifies an optional destination for the recognition results.
This type is not used in any activity, and only used as part of another schema.
Fields§
§gcs_uri: Option<String>Specifies a Cloud Storage URI for the recognition results. Must be specified in the format: gs://bucket_name/object_name, and the bucket must already exist.
Trait Implementations§
Source§impl Clone for TranscriptOutputConfig
impl Clone for TranscriptOutputConfig
Source§fn clone(&self) -> TranscriptOutputConfig
fn clone(&self) -> TranscriptOutputConfig
Returns a duplicate 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 TranscriptOutputConfig
impl Debug for TranscriptOutputConfig
Source§impl Default for TranscriptOutputConfig
impl Default for TranscriptOutputConfig
Source§fn default() -> TranscriptOutputConfig
fn default() -> TranscriptOutputConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TranscriptOutputConfig
impl<'de> Deserialize<'de> for TranscriptOutputConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for TranscriptOutputConfig
impl Serialize for TranscriptOutputConfig
impl Part for TranscriptOutputConfig
Auto Trait Implementations§
impl Freeze for TranscriptOutputConfig
impl RefUnwindSafe for TranscriptOutputConfig
impl Send for TranscriptOutputConfig
impl Sync for TranscriptOutputConfig
impl Unpin for TranscriptOutputConfig
impl UnwindSafe for TranscriptOutputConfig
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