[][src]Struct sauron::Http

pub struct Http;

Provides functions for doing http network request

Implementations

impl Http[src]

pub fn fetch_with_text_response_decoder<DE, CB, OUT, APP, MSG>(
    url: &str,
    response_text_decoder: DE,
    cb: CB
) -> Cmd<Program<APP, MSG>> where
    APP: Component<MSG> + 'static,
    CB: Fn(Result<OUT, JsValue>) -> MSG + Clone + 'static,
    DE: Fn(String) -> OUT + Clone + 'static,
    MSG: 'static,
    OUT: 'static, 
[src]

fetch text document from the url and decode the result with the supplied response_text_decoder function

pub fn fetch_with_response_decoder<F, ERR, APP, MSG>(
    url: &str,
    response_decoder: F,
    fail_cb: ERR
) -> Cmd<Program<APP, MSG>> where
    APP: Component<MSG> + 'static,
    ERR: Fn(JsValue) -> MSG + 'static,
    F: Fn(JsValue) -> MSG + 'static,
    MSG: 'static, 
[src]

API for fetching http rest request

Trait Implementations

impl Clone for Http[src]

impl Copy for Http[src]

impl Debug for Http[src]

Auto Trait Implementations

impl RefUnwindSafe for Http

impl Send for Http

impl Sync for Http

impl Unpin for Http

impl UnwindSafe for Http

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