Struct google_dialogflow2::api::GoogleCloudDialogflowV2ValidationError[][src]

pub struct GoogleCloudDialogflowV2ValidationError {
    pub entries: Option<Vec<String>>,
    pub error_message: Option<String>,
    pub severity: Option<String>,
}

Represents a single validation error.

This type is not used in any activity, and only used as part of another schema.

Fields

entries: Option<Vec<String>>

The names of the entries that the error is associated with. Format: - "projects//agent", if the error is associated with the entire agent. - "projects//agent/intents/", if the error is associated with certain intents. - "projects//agent/intents//trainingPhrases/", if the error is associated with certain intent training phrases. - "projects//agent/intents//parameters/", if the error is associated with certain intent parameters. - "projects//agent/entities/", if the error is associated with certain entities.

error_message: Option<String>

The detailed error messsage.

severity: Option<String>

The severity of the error.

Trait Implementations

impl Clone for GoogleCloudDialogflowV2ValidationError[src]

impl Debug for GoogleCloudDialogflowV2ValidationError[src]

impl Default for GoogleCloudDialogflowV2ValidationError[src]

impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2ValidationError[src]

impl Part for GoogleCloudDialogflowV2ValidationError[src]

impl Serialize for GoogleCloudDialogflowV2ValidationError[src]

Auto Trait Implementations

impl RefUnwindSafe for GoogleCloudDialogflowV2ValidationError[src]

impl Send for GoogleCloudDialogflowV2ValidationError[src]

impl Sync for GoogleCloudDialogflowV2ValidationError[src]

impl Unpin for GoogleCloudDialogflowV2ValidationError[src]

impl UnwindSafe for GoogleCloudDialogflowV2ValidationError[src]

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<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.