google-cloud-speech-v2 1.8.0

Google Cloud Client Libraries for Rust - Cloud Speech-to-Text API
Documentation
// Copyright 2025 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Code generated by sidekick. DO NOT EDIT.
use crate::Result;

/// Implements a [Speech](super::stub::Speech) decorator for logging and tracing.
#[derive(Clone, Debug)]
pub struct Speech<T>
where
    T: super::stub::Speech + std::fmt::Debug + Send + Sync,
{
    inner: T,
}

impl<T> Speech<T>
where
    T: super::stub::Speech + std::fmt::Debug + Send + Sync,
{
    pub fn new(inner: T) -> Self {
        Self { inner }
    }
}

impl<T> super::stub::Speech for Speech<T>
where
    T: super::stub::Speech + std::fmt::Debug + Send + Sync,
{
    #[tracing::instrument(ret)]
    async fn create_recognizer(
        &self,
        req: crate::model::CreateRecognizerRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<google_cloud_longrunning::model::Operation>> {
        self.inner.create_recognizer(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn list_recognizers(
        &self,
        req: crate::model::ListRecognizersRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<crate::model::ListRecognizersResponse>> {
        self.inner.list_recognizers(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn get_recognizer(
        &self,
        req: crate::model::GetRecognizerRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<crate::model::Recognizer>> {
        self.inner.get_recognizer(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn update_recognizer(
        &self,
        req: crate::model::UpdateRecognizerRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<google_cloud_longrunning::model::Operation>> {
        self.inner.update_recognizer(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn delete_recognizer(
        &self,
        req: crate::model::DeleteRecognizerRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<google_cloud_longrunning::model::Operation>> {
        self.inner.delete_recognizer(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn undelete_recognizer(
        &self,
        req: crate::model::UndeleteRecognizerRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<google_cloud_longrunning::model::Operation>> {
        self.inner.undelete_recognizer(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn recognize(
        &self,
        req: crate::model::RecognizeRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<crate::model::RecognizeResponse>> {
        self.inner.recognize(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn batch_recognize(
        &self,
        req: crate::model::BatchRecognizeRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<google_cloud_longrunning::model::Operation>> {
        self.inner.batch_recognize(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn get_config(
        &self,
        req: crate::model::GetConfigRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<crate::model::Config>> {
        self.inner.get_config(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn update_config(
        &self,
        req: crate::model::UpdateConfigRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<crate::model::Config>> {
        self.inner.update_config(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn create_custom_class(
        &self,
        req: crate::model::CreateCustomClassRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<google_cloud_longrunning::model::Operation>> {
        self.inner.create_custom_class(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn list_custom_classes(
        &self,
        req: crate::model::ListCustomClassesRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<crate::model::ListCustomClassesResponse>> {
        self.inner.list_custom_classes(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn get_custom_class(
        &self,
        req: crate::model::GetCustomClassRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<crate::model::CustomClass>> {
        self.inner.get_custom_class(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn update_custom_class(
        &self,
        req: crate::model::UpdateCustomClassRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<google_cloud_longrunning::model::Operation>> {
        self.inner.update_custom_class(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn delete_custom_class(
        &self,
        req: crate::model::DeleteCustomClassRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<google_cloud_longrunning::model::Operation>> {
        self.inner.delete_custom_class(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn undelete_custom_class(
        &self,
        req: crate::model::UndeleteCustomClassRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<google_cloud_longrunning::model::Operation>> {
        self.inner.undelete_custom_class(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn create_phrase_set(
        &self,
        req: crate::model::CreatePhraseSetRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<google_cloud_longrunning::model::Operation>> {
        self.inner.create_phrase_set(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn list_phrase_sets(
        &self,
        req: crate::model::ListPhraseSetsRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<crate::model::ListPhraseSetsResponse>> {
        self.inner.list_phrase_sets(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn get_phrase_set(
        &self,
        req: crate::model::GetPhraseSetRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<crate::model::PhraseSet>> {
        self.inner.get_phrase_set(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn update_phrase_set(
        &self,
        req: crate::model::UpdatePhraseSetRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<google_cloud_longrunning::model::Operation>> {
        self.inner.update_phrase_set(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn delete_phrase_set(
        &self,
        req: crate::model::DeletePhraseSetRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<google_cloud_longrunning::model::Operation>> {
        self.inner.delete_phrase_set(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn undelete_phrase_set(
        &self,
        req: crate::model::UndeletePhraseSetRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<google_cloud_longrunning::model::Operation>> {
        self.inner.undelete_phrase_set(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn list_locations(
        &self,
        req: google_cloud_location::model::ListLocationsRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<google_cloud_location::model::ListLocationsResponse>> {
        self.inner.list_locations(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn get_location(
        &self,
        req: google_cloud_location::model::GetLocationRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<google_cloud_location::model::Location>> {
        self.inner.get_location(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn list_operations(
        &self,
        req: google_cloud_longrunning::model::ListOperationsRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<google_cloud_longrunning::model::ListOperationsResponse>> {
        self.inner.list_operations(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn get_operation(
        &self,
        req: google_cloud_longrunning::model::GetOperationRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<google_cloud_longrunning::model::Operation>> {
        self.inner.get_operation(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn delete_operation(
        &self,
        req: google_cloud_longrunning::model::DeleteOperationRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<()>> {
        self.inner.delete_operation(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn cancel_operation(
        &self,
        req: google_cloud_longrunning::model::CancelOperationRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<()>> {
        self.inner.cancel_operation(req, options).await
    }

    fn get_polling_error_policy(
        &self,
        options: &crate::RequestOptions,
    ) -> std::sync::Arc<dyn google_cloud_gax::polling_error_policy::PollingErrorPolicy> {
        self.inner.get_polling_error_policy(options)
    }

    fn get_polling_backoff_policy(
        &self,
        options: &crate::RequestOptions,
    ) -> std::sync::Arc<dyn google_cloud_gax::polling_backoff_policy::PollingBackoffPolicy> {
        self.inner.get_polling_backoff_policy(options)
    }
}