pub struct Version {
pub version: f64,
pub registry: String,
pub serial: String,
pub records: u32,
pub start_date: String,
pub end_date: String,
pub utc_offset: String,
}
Expand description
Represents an RSEF version line.
Fields§
§version: f64
The version of the RIR Statistics Exchange Format.
registry: String
The registry that this record belongs to.
serial: String
Serial number of this file (within the creating RIR series).
records: u32
Number of records in file, excluding blank lines, summary lines, the version line and comments.
start_date: String
Start date of time period, in yyyymmdd format.
end_date: String
End date of period, in yyyymmdd format.
utc_offset: String
Offset from UTC (+/- hours) of local RIR producing file.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Version
impl RefUnwindSafe for Version
impl Send for Version
impl Sync for Version
impl Unpin for Version
impl UnwindSafe for Version
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