[][src]Struct ift::rfc::Rfc6890Entry

pub struct Rfc6890Entry {
    pub address_block: IpNet,
    pub name: String,
    pub rfc: String,
    pub allocation_date: String,
    pub termination_date: String,
    pub source: bool,
    pub destination: bool,
    pub forwardable: bool,
    pub global: bool,
    pub reserved_by_protocol: bool,
}

Entry containing everything from the table specified in RFC6890

Fields

address_block: IpNet

IpNet block

name: String

Name from RFC

rfc: String

Original RFC

allocation_date: String

Allocation Date

termination_date: String

If terminated by when

source: bool

Is a source

destination: bool

Is a destination

forwardable: bool

Is forwardable

global: bool

Is global

reserved_by_protocol: bool

Is reserved

Trait Implementations

impl Debug for Rfc6890Entry[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.