sdtn 0.1.3

SpaceArth DTN - A Rust-based implementation of Delay Tolerant Networking (DTN) for resilient communication
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::bpv7::bundle::Bundle;

/// Bundle status information
#[derive(Debug)]
pub enum BundleStatus {
    /// Status of a single bundle
    Single { id: String, bundle: Bundle },
    /// Summary status of all bundles
    Summary {
        active: usize,
        expired: usize,
        total: usize,
    },
}