[][src]Struct alice_types::response::Response

pub struct Response<SessionState = Value> {
    pub text: String,
    pub end_session: bool,
    pub session_state: Option<SessionState>,
}

Fields

text: Stringend_session: boolsession_state: Option<SessionState>

Implementations

impl<SessionState> Response<SessionState>[src]

pub fn from_request(req: Request<SessionState>) -> Self[src]

Trait Implementations

impl<SessionState> Default for Response<SessionState>[src]

impl<SessionState> Serialize for Response<SessionState> where
    SessionState: Serialize
[src]

Auto Trait Implementations

impl<SessionState> RefUnwindSafe for Response<SessionState> where
    SessionState: RefUnwindSafe
[src]

impl<SessionState> Send for Response<SessionState> where
    SessionState: Send
[src]

impl<SessionState> Sync for Response<SessionState> where
    SessionState: Sync
[src]

impl<SessionState> Unpin for Response<SessionState> where
    SessionState: Unpin
[src]

impl<SessionState> UnwindSafe for Response<SessionState> where
    SessionState: UnwindSafe
[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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.