Struct google_api_proto::google::cloud::speech::v2::speech_client::SpeechClient
source · pub struct SpeechClient<T> { /* private fields */ }
Expand description
Enables speech transcription and resource management.
Implementations§
source§impl<T> SpeechClient<T>where
T: GrpcService<BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + Send,
impl<T> SpeechClient<T>where
T: GrpcService<BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + Send,
pub fn new(inner: T) -> Self
pub fn with_origin(inner: T, origin: Uri) -> Self
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> SpeechClient<InterceptedService<T, F>>where
F: Interceptor,
T::ResponseBody: Default,
T: Service<Request<BoxBody>, Response = Response<<T as GrpcService<BoxBody>>::ResponseBody>>,
<T as Service<Request<BoxBody>>>::Error: Into<StdError> + Send + Sync,
sourcepub fn send_compressed(self, encoding: CompressionEncoding) -> Self
pub fn send_compressed(self, encoding: CompressionEncoding) -> Self
Compress requests with the given encoding.
This requires the server to support it otherwise it might respond with an error.
sourcepub fn accept_compressed(self, encoding: CompressionEncoding) -> Self
pub fn accept_compressed(self, encoding: CompressionEncoding) -> Self
Enable decompressing responses.
sourcepub fn max_decoding_message_size(self, limit: usize) -> Self
pub fn max_decoding_message_size(self, limit: usize) -> Self
Limits the maximum size of a decoded message.
Default: 4MB
sourcepub fn max_encoding_message_size(self, limit: usize) -> Self
pub fn max_encoding_message_size(self, limit: usize) -> Self
Limits the maximum size of an encoded message.
Default: usize::MAX
sourcepub async fn create_recognizer(
&mut self,
request: impl IntoRequest<CreateRecognizerRequest>,
) -> Result<Response<Operation>, Status>
pub async fn create_recognizer( &mut self, request: impl IntoRequest<CreateRecognizerRequest>, ) -> Result<Response<Operation>, Status>
Creates a [Recognizer][google.cloud.speech.v2.Recognizer].
sourcepub async fn list_recognizers(
&mut self,
request: impl IntoRequest<ListRecognizersRequest>,
) -> Result<Response<ListRecognizersResponse>, Status>
pub async fn list_recognizers( &mut self, request: impl IntoRequest<ListRecognizersRequest>, ) -> Result<Response<ListRecognizersResponse>, Status>
Lists Recognizers.
sourcepub async fn get_recognizer(
&mut self,
request: impl IntoRequest<GetRecognizerRequest>,
) -> Result<Response<Recognizer>, Status>
pub async fn get_recognizer( &mut self, request: impl IntoRequest<GetRecognizerRequest>, ) -> Result<Response<Recognizer>, Status>
Returns the requested [Recognizer][google.cloud.speech.v2.Recognizer]. Fails with [NOT_FOUND][google.rpc.Code.NOT_FOUND] if the requested Recognizer doesn’t exist.
sourcepub async fn update_recognizer(
&mut self,
request: impl IntoRequest<UpdateRecognizerRequest>,
) -> Result<Response<Operation>, Status>
pub async fn update_recognizer( &mut self, request: impl IntoRequest<UpdateRecognizerRequest>, ) -> Result<Response<Operation>, Status>
Updates the [Recognizer][google.cloud.speech.v2.Recognizer].
sourcepub async fn delete_recognizer(
&mut self,
request: impl IntoRequest<DeleteRecognizerRequest>,
) -> Result<Response<Operation>, Status>
pub async fn delete_recognizer( &mut self, request: impl IntoRequest<DeleteRecognizerRequest>, ) -> Result<Response<Operation>, Status>
Deletes the [Recognizer][google.cloud.speech.v2.Recognizer].
sourcepub async fn undelete_recognizer(
&mut self,
request: impl IntoRequest<UndeleteRecognizerRequest>,
) -> Result<Response<Operation>, Status>
pub async fn undelete_recognizer( &mut self, request: impl IntoRequest<UndeleteRecognizerRequest>, ) -> Result<Response<Operation>, Status>
Undeletes the [Recognizer][google.cloud.speech.v2.Recognizer].
sourcepub async fn recognize(
&mut self,
request: impl IntoRequest<RecognizeRequest>,
) -> Result<Response<RecognizeResponse>, Status>
pub async fn recognize( &mut self, request: impl IntoRequest<RecognizeRequest>, ) -> Result<Response<RecognizeResponse>, Status>
Performs synchronous Speech recognition: receive results after all audio has been sent and processed.
sourcepub async fn streaming_recognize(
&mut self,
request: impl IntoStreamingRequest<Message = StreamingRecognizeRequest>,
) -> Result<Response<Streaming<StreamingRecognizeResponse>>, Status>
pub async fn streaming_recognize( &mut self, request: impl IntoStreamingRequest<Message = StreamingRecognizeRequest>, ) -> Result<Response<Streaming<StreamingRecognizeResponse>>, Status>
Performs bidirectional streaming speech recognition: receive results while sending audio. This method is only available via the gRPC API (not REST).
sourcepub async fn batch_recognize(
&mut self,
request: impl IntoRequest<BatchRecognizeRequest>,
) -> Result<Response<Operation>, Status>
pub async fn batch_recognize( &mut self, request: impl IntoRequest<BatchRecognizeRequest>, ) -> Result<Response<Operation>, Status>
Performs batch asynchronous speech recognition: send a request with N audio files and receive a long running operation that can be polled to see when the transcriptions are finished.
sourcepub async fn get_config(
&mut self,
request: impl IntoRequest<GetConfigRequest>,
) -> Result<Response<Config>, Status>
pub async fn get_config( &mut self, request: impl IntoRequest<GetConfigRequest>, ) -> Result<Response<Config>, Status>
Returns the requested [Config][google.cloud.speech.v2.Config].
sourcepub async fn update_config(
&mut self,
request: impl IntoRequest<UpdateConfigRequest>,
) -> Result<Response<Config>, Status>
pub async fn update_config( &mut self, request: impl IntoRequest<UpdateConfigRequest>, ) -> Result<Response<Config>, Status>
Updates the [Config][google.cloud.speech.v2.Config].
sourcepub async fn create_custom_class(
&mut self,
request: impl IntoRequest<CreateCustomClassRequest>,
) -> Result<Response<Operation>, Status>
pub async fn create_custom_class( &mut self, request: impl IntoRequest<CreateCustomClassRequest>, ) -> Result<Response<Operation>, Status>
Creates a [CustomClass][google.cloud.speech.v2.CustomClass].
sourcepub async fn list_custom_classes(
&mut self,
request: impl IntoRequest<ListCustomClassesRequest>,
) -> Result<Response<ListCustomClassesResponse>, Status>
pub async fn list_custom_classes( &mut self, request: impl IntoRequest<ListCustomClassesRequest>, ) -> Result<Response<ListCustomClassesResponse>, Status>
Lists CustomClasses.
sourcepub async fn get_custom_class(
&mut self,
request: impl IntoRequest<GetCustomClassRequest>,
) -> Result<Response<CustomClass>, Status>
pub async fn get_custom_class( &mut self, request: impl IntoRequest<GetCustomClassRequest>, ) -> Result<Response<CustomClass>, Status>
Returns the requested [CustomClass][google.cloud.speech.v2.CustomClass].
sourcepub async fn update_custom_class(
&mut self,
request: impl IntoRequest<UpdateCustomClassRequest>,
) -> Result<Response<Operation>, Status>
pub async fn update_custom_class( &mut self, request: impl IntoRequest<UpdateCustomClassRequest>, ) -> Result<Response<Operation>, Status>
Updates the [CustomClass][google.cloud.speech.v2.CustomClass].
sourcepub async fn delete_custom_class(
&mut self,
request: impl IntoRequest<DeleteCustomClassRequest>,
) -> Result<Response<Operation>, Status>
pub async fn delete_custom_class( &mut self, request: impl IntoRequest<DeleteCustomClassRequest>, ) -> Result<Response<Operation>, Status>
Deletes the [CustomClass][google.cloud.speech.v2.CustomClass].
sourcepub async fn undelete_custom_class(
&mut self,
request: impl IntoRequest<UndeleteCustomClassRequest>,
) -> Result<Response<Operation>, Status>
pub async fn undelete_custom_class( &mut self, request: impl IntoRequest<UndeleteCustomClassRequest>, ) -> Result<Response<Operation>, Status>
Undeletes the [CustomClass][google.cloud.speech.v2.CustomClass].
sourcepub async fn create_phrase_set(
&mut self,
request: impl IntoRequest<CreatePhraseSetRequest>,
) -> Result<Response<Operation>, Status>
pub async fn create_phrase_set( &mut self, request: impl IntoRequest<CreatePhraseSetRequest>, ) -> Result<Response<Operation>, Status>
Creates a [PhraseSet][google.cloud.speech.v2.PhraseSet].
sourcepub async fn list_phrase_sets(
&mut self,
request: impl IntoRequest<ListPhraseSetsRequest>,
) -> Result<Response<ListPhraseSetsResponse>, Status>
pub async fn list_phrase_sets( &mut self, request: impl IntoRequest<ListPhraseSetsRequest>, ) -> Result<Response<ListPhraseSetsResponse>, Status>
Lists PhraseSets.
sourcepub async fn get_phrase_set(
&mut self,
request: impl IntoRequest<GetPhraseSetRequest>,
) -> Result<Response<PhraseSet>, Status>
pub async fn get_phrase_set( &mut self, request: impl IntoRequest<GetPhraseSetRequest>, ) -> Result<Response<PhraseSet>, Status>
Returns the requested [PhraseSet][google.cloud.speech.v2.PhraseSet].
sourcepub async fn update_phrase_set(
&mut self,
request: impl IntoRequest<UpdatePhraseSetRequest>,
) -> Result<Response<Operation>, Status>
pub async fn update_phrase_set( &mut self, request: impl IntoRequest<UpdatePhraseSetRequest>, ) -> Result<Response<Operation>, Status>
Updates the [PhraseSet][google.cloud.speech.v2.PhraseSet].
sourcepub async fn delete_phrase_set(
&mut self,
request: impl IntoRequest<DeletePhraseSetRequest>,
) -> Result<Response<Operation>, Status>
pub async fn delete_phrase_set( &mut self, request: impl IntoRequest<DeletePhraseSetRequest>, ) -> Result<Response<Operation>, Status>
Deletes the [PhraseSet][google.cloud.speech.v2.PhraseSet].
sourcepub async fn undelete_phrase_set(
&mut self,
request: impl IntoRequest<UndeletePhraseSetRequest>,
) -> Result<Response<Operation>, Status>
pub async fn undelete_phrase_set( &mut self, request: impl IntoRequest<UndeletePhraseSetRequest>, ) -> Result<Response<Operation>, Status>
Undeletes the [PhraseSet][google.cloud.speech.v2.PhraseSet].
Trait Implementations§
source§impl<T: Clone> Clone for SpeechClient<T>
impl<T: Clone> Clone for SpeechClient<T>
source§fn clone(&self) -> SpeechClient<T>
fn clone(&self) -> SpeechClient<T>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl<T> !Freeze for SpeechClient<T>
impl<T> RefUnwindSafe for SpeechClient<T>where
T: RefUnwindSafe,
impl<T> Send for SpeechClient<T>where
T: Send,
impl<T> Sync for SpeechClient<T>where
T: Sync,
impl<T> Unpin for SpeechClient<T>where
T: Unpin,
impl<T> UnwindSafe for SpeechClient<T>where
T: UnwindSafe,
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request