pub enum NetworkResponse {
HttpRequestError(HttpError),
HttpResponse(HttpResponse),
HttpStreamResponse(HttpResponse),
HttpStreamComplete(HttpResponse),
HttpProgress(HttpProgress),
}
Variants§
HttpRequestError(HttpError)
HttpResponse(HttpResponse)
HttpStreamResponse(HttpResponse)
HttpStreamComplete(HttpResponse)
HttpProgress(HttpProgress)
Trait Implementations§
Source§impl Clone for NetworkResponse
impl Clone for NetworkResponse
Source§fn clone(&self) -> NetworkResponse
fn clone(&self) -> NetworkResponse
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for NetworkResponse
impl RefUnwindSafe for NetworkResponse
impl Send for NetworkResponse
impl Sync for NetworkResponse
impl Unpin for NetworkResponse
impl UnwindSafe for NetworkResponse
Blanket Implementations§
Source§impl<T> ActionTrait for T
impl<T> ActionTrait for T
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more