pub struct ResourceInfoEntry {
pub link_id: [u8; 16],
pub direction: String,
pub total_parts: usize,
pub transferred_parts: usize,
pub complete: bool,
}Expand description
Information about an active resource transfer.
Fields§
§link_id: [u8; 16]§direction: String§total_parts: usize§transferred_parts: usize§complete: boolTrait Implementations§
Source§impl Clone for ResourceInfoEntry
impl Clone for ResourceInfoEntry
Source§fn clone(&self) -> ResourceInfoEntry
fn clone(&self) -> ResourceInfoEntry
Returns a duplicate 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 ResourceInfoEntry
impl RefUnwindSafe for ResourceInfoEntry
impl Send for ResourceInfoEntry
impl Sync for ResourceInfoEntry
impl Unpin for ResourceInfoEntry
impl UnwindSafe for ResourceInfoEntry
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