use derive_more::Constructor;
#[derive(Copy, Clone, Debug, PartialEq, Default, Constructor)]
pub struct SwarmMetadata {
pub downloaded: u32, pub complete: u32, pub incomplete: u32,
}
impl SwarmMetadata {
#[must_use]
pub fn zeroed() -> Self {
Self::default()
}
}