You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Accumulated progress state of a transfer.
#[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq)]
pub struct TransferState {
/// The root blob of this transfer (may be a hash seq),
pub root: BlobState,
/// Whether we are connected to a node
pub connected: bool,
/// Children if the root blob is a hash seq, empty for raw blobs
pub children: HashMap<NonZeroU64, BlobState>,
/// Child being transferred at the moment.
pub current: Option<BlobId>,
/// Progress ids for individual blobs.
pub progress_id_to_blob: HashMap<ProgressId, BlobId>,
}
The struct contains more fields than what we currently provide. Let's get this on par with iroh core.
The text was updated successfully, but these errors were encountered: