[][src]Struct gcp_client::google::cloud::dialogflow::v2beta1::session_entity_types_client::SessionEntityTypesClient

pub struct SessionEntityTypesClient<T> { /* fields omitted */ }

Entities are extracted from user input and represent parameters that are meaningful to your application. For example, a date range, a proper name such as a geographic location or landmark, and so on. Entities represent actionable data for your application.

Session entity types are referred to as User entity types and are entities that are built for an individual user such as favorites, preferences, playlists, and so on. You can redefine a session entity type at the session level.

Session entity methods do not work with Google Assistant integration. Contact Dialogflow support if you need to use session entities with Google Assistant integration.

For more information about entity types, see the Dialogflow documentation.

Implementations

impl<T> SessionEntityTypesClient<T> where
    T: GrpcService<BoxBody>,
    T::ResponseBody: Body + HttpBody + Send + 'static,
    T::Error: Into<StdError>,
    <T::ResponseBody as HttpBody>::Error: Into<StdError> + Send
[src]

pub fn new(inner: T) -> Self[src]

pub fn with_interceptor(inner: T, interceptor: impl Into<Interceptor>) -> Self[src]

pub async fn list_session_entity_types<'_>(
    &'_ mut self,
    request: impl IntoRequest<ListSessionEntityTypesRequest>
) -> Result<Response<ListSessionEntityTypesResponse>, Status>
[src]

Returns the list of all session entity types in the specified session.

This method doesn't work with Google Assistant integration. Contact Dialogflow support if you need to use session entities with Google Assistant integration.

pub async fn get_session_entity_type<'_>(
    &'_ mut self,
    request: impl IntoRequest<GetSessionEntityTypeRequest>
) -> Result<Response<SessionEntityType>, Status>
[src]

Retrieves the specified session entity type.

This method doesn't work with Google Assistant integration. Contact Dialogflow support if you need to use session entities with Google Assistant integration.

pub async fn create_session_entity_type<'_>(
    &'_ mut self,
    request: impl IntoRequest<CreateSessionEntityTypeRequest>
) -> Result<Response<SessionEntityType>, Status>
[src]

Creates a session entity type.

If the specified session entity type already exists, overrides the session entity type.

This method doesn't work with Google Assistant integration. Contact Dialogflow support if you need to use session entities with Google Assistant integration.

pub async fn update_session_entity_type<'_>(
    &'_ mut self,
    request: impl IntoRequest<UpdateSessionEntityTypeRequest>
) -> Result<Response<SessionEntityType>, Status>
[src]

Updates the specified session entity type.

This method doesn't work with Google Assistant integration. Contact Dialogflow support if you need to use session entities with Google Assistant integration.

pub async fn delete_session_entity_type<'_>(
    &'_ mut self,
    request: impl IntoRequest<DeleteSessionEntityTypeRequest>
) -> Result<Response<()>, Status>
[src]

Deletes the specified session entity type.

This method doesn't work with Google Assistant integration. Contact Dialogflow support if you need to use session entities with Google Assistant integration.

Trait Implementations

impl<T: Clone> Clone for SessionEntityTypesClient<T>[src]

impl<T> Debug for SessionEntityTypesClient<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for SessionEntityTypesClient<T>

impl<T> Send for SessionEntityTypesClient<T> where
    T: Send

impl<T> Sync for SessionEntityTypesClient<T> where
    T: Sync

impl<T> Unpin for SessionEntityTypesClient<T> where
    T: Unpin

impl<T> !UnwindSafe for SessionEntityTypesClient<T>

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, 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>, 

impl<T> WithSubscriber for T[src]