[][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<APP, MSG, DE, CB, ERRCB, OUT>(
    url: &str,
    response_text_decoder: DE,
    cb: CB,
    err_cb: ERRCB
) -> Cmd<Program<APP, MSG>> where
    MSG: 'static,
    CB: Fn(Result<OUT, Response>) -> MSG + Clone + 'static,
    APP: Component<MSG> + 'static,
    DE: Fn(String) -> OUT + Clone + 'static,
    ERRCB: Fn(TypeError) -> MSG + Clone + '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<APP, MSG, DECODE, ERR>(
    url: &str,
    text_response_decoder: DECODE,
    err_cb: ERR
) -> Cmd<Program<APP, MSG>> where
    MSG: 'static,
    APP: Component<MSG> + 'static,
    DECODE: Fn((u16, String, Headers)) -> MSG + 'static,
    ERR: Fn(TypeError) -> MSG + 'static, 
[src]

API for fetching http rest request

pub fn fetch_with_request_and_response_decoder<APP, MSG, DECODE, ERR>(
    url: &str,
    request_init: Option<RequestInit>,
    text_response_decoder: DECODE,
    err_cb: ERR
) -> Cmd<Program<APP, MSG>> where
    MSG: 'static,
    APP: Component<MSG> + 'static,
    DECODE: Fn((u16, String, Headers)) -> MSG + 'static,
    ERR: Fn(TypeError) -> MSG + 'static, 
[src]

API for fetching http rest request err_cb - request failed, in cases where a network is down, server is dead, etc.

Trait Implementations

impl Clone for Http[src]

impl Copy for Http[src]

impl Debug for Http[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> 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.