[][src]Struct fetch_unroll::Fetch

pub struct Fetch<R> { /* fields omitted */ }

HTTP(S) fetcher

Implementations

impl Fetch<()>[src]

pub fn from<U>(url: U) -> Fetch<impl Read> where
    U: AsRef<str>, 
[src]

Fetch data from url

impl<R> Fetch<R> where
    R: Read
[src]

pub fn save(self) -> Save<impl Read>[src]

Write fetched data to file

pub fn unroll(self) -> Unroll<impl Read>[src]

Unroll fetched archive

Auto Trait Implementations

impl<R> !RefUnwindSafe for Fetch<R>[src]

impl<R> Send for Fetch<R> where
    R: Send
[src]

impl<R> Sync for Fetch<R> where
    R: Sync
[src]

impl<R> Unpin for Fetch<R> where
    R: Unpin
[src]

impl<R> !UnwindSafe for Fetch<R>[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.