Struct gapi_grpc::google::cloud::speech::v1p1beta1::CreateCustomClassRequest[][src]

pub struct CreateCustomClassRequest {
    pub parent: String,
    pub custom_class_id: String,
    pub custom_class: Option<CustomClass>,
}

Message sent by the client for the CreateCustomClass method.

Fields

parent: String

Required. The parent resource where this custom class will be created. Format: {api_version}/projects/{project}/locations/{location}/customClasses

custom_class_id: String

The ID to use for the custom class, which will become the final component of the custom class’ resource name.

This value should be 4-63 characters, and valid characters are /[a-z][0-9]-/.

custom_class: Option<CustomClass>

Required. The custom class to create.

Trait Implementations

impl Clone for CreateCustomClassRequest[src]

impl Debug for CreateCustomClassRequest[src]

impl Default for CreateCustomClassRequest[src]

impl Message for CreateCustomClassRequest[src]

impl PartialEq<CreateCustomClassRequest> for CreateCustomClassRequest[src]

impl StructuralPartialEq for CreateCustomClassRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for CreateCustomClassRequest

impl Send for CreateCustomClassRequest

impl Sync for CreateCustomClassRequest

impl Unpin for CreateCustomClassRequest

impl UnwindSafe for CreateCustomClassRequest

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> 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> IntoRequest<T> for T[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]