Struct HttpProgress
#[repr(C)]pub struct HttpProgress {
pub Stage: HttpProgressStage,
pub BytesSent: u64,
pub TotalBytesToSend: Option<IReference<u64>>,
pub BytesReceived: u64,
pub TotalBytesToReceive: Option<IReference<u64>>,
pub Retries: u32,
}
Fields§
§Stage: HttpProgressStage
§BytesSent: u64
§TotalBytesToSend: Option<IReference<u64>>
§BytesReceived: u64
§TotalBytesToReceive: Option<IReference<u64>>
§Retries: u32
Trait Implementations§
§impl Clone for HttpProgress
impl Clone for HttpProgress
§fn clone(&self) -> HttpProgress
fn clone(&self) -> HttpProgress
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 more§impl Debug for HttpProgress
impl Debug for HttpProgress
§impl Default for HttpProgress
impl Default for HttpProgress
§fn default() -> HttpProgress
fn default() -> HttpProgress
Returns the “default value” for a type. Read more
§impl PartialEq for HttpProgress
impl PartialEq for HttpProgress
impl StructuralPartialEq for HttpProgress
Auto Trait Implementations§
impl Freeze for HttpProgress
impl RefUnwindSafe for HttpProgress
impl !Send for HttpProgress
impl !Sync for HttpProgress
impl Unpin for HttpProgress
impl UnwindSafe for HttpProgress
Blanket Implementations§
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