[][src]Struct alexa_sdk::request::Request

pub struct Request {
    pub version: String,
    pub session: Option<Session>,
    pub body: ReqBody,
    pub context: Context,
}

Request struct corresponding to the Alexa spec

Fields

version: Stringsession: Option<Session>body: ReqBodycontext: Context

Methods

impl Request[src]

pub fn reqtype(&self) -> ReqType[src]

Extracts the request type from the request

pub fn locale(&self) -> Locale[src]

Extracts the locale from the request

pub fn intent(&self) -> IntentType[src]

Extracts the intent from the request

pub fn slot_value(&self, slot: &str) -> Option<String>[src]

retrieves the string value of named slot from the request, if it exists

pub fn attribute_value(&self, key: &str) -> Option<&String>[src]

retrieves the attribute value with the given key, if it exists

pub fn is_new(&self) -> bool[src]

returns whether or not this is a new request

Trait Implementations

impl Clone for Request[src]

impl Debug for Request[src]

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

impl Serialize for Request[src]

Auto Trait Implementations

impl RefUnwindSafe for Request

impl Send for Request

impl Sync for Request

impl Unpin for Request

impl UnwindSafe for Request

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.