pub struct TransferInfo {
pub id: TransferId,
pub state: TransferState,
pub config: TransferConfig,
pub started_at: Instant,
pub updated_at: Instant,
}Expand description
Information about a transfer session
Fields§
§id: TransferId§state: TransferState§config: TransferConfig§started_at: Instant§updated_at: InstantImplementations§
Trait Implementations§
Source§impl Clone for TransferInfo
impl Clone for TransferInfo
Source§fn clone(&self) -> TransferInfo
fn clone(&self) -> TransferInfo
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 TransferInfo
impl RefUnwindSafe for TransferInfo
impl Send for TransferInfo
impl Sync for TransferInfo
impl Unpin for TransferInfo
impl UnwindSafe for TransferInfo
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