[][src]Struct alexa_sdk::response::Response

pub struct Response { /* fields omitted */ }

Response struct implementing the Alexa JSON spec

Methods

impl Response[src]

pub fn new(should_end: bool) -> Response[src]

Constructs a new response with only required elements

pub fn new_simple(title: &str, text: &str) -> Response[src]

Constructs a basic plain response with a simple card

pub fn simple(title: &str, text: &str) -> Response[src]

Constructs a basic plain response with a simple card

pub fn end() -> Response[src]

Constructs an empty response ending the session

pub fn speech(self, speech: Speech) -> Self[src]

adds a speach element to the response

pub fn card(self, card: Card) -> Self[src]

adds a card to the response

pub fn add_attribute(&mut self, key: &str, val: &str)[src]

adds an attribute key/value pair to the response attributes can be read on the next request for basic state persistance

Trait Implementations

impl Clone for Response[src]

impl Debug for Response[src]

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

impl Serialize for Response[src]

Auto Trait Implementations

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

impl<T> From<T> 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.