pub struct SyncResult {
pub artifacts_sent: usize,
pub artifacts_received: usize,
pub protocol: SyncProtocol,
}Expand description
Result of a sync operation.
Fields§
§artifacts_sent: usizeNumber of artifacts sent.
artifacts_received: usizeNumber of artifacts received.
protocol: SyncProtocolProtocol used.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SyncResult
impl RefUnwindSafe for SyncResult
impl Send for SyncResult
impl Sync for SyncResult
impl Unpin for SyncResult
impl UnsafeUnpin for SyncResult
impl UnwindSafe for SyncResult
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