libratman 0.7.0

Ratman types, client, and interface library
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::types::Ident32;

/// Represent an Irdest subnet
///
/// A subnet is any group of devices that identifies as being in a
/// given subnet.  Currently this only represents type level
/// information -- no protocols use this feature yet.
pub struct Subnet {
    pub subnet_id: Ident32,
}