[][src]Struct rdap_client::parser::AutNum

pub struct AutNum {
    pub handle: String,
    pub start_autnum: Option<u32>,
    pub end_autnum: Option<u32>,
    pub name: Option<String>,
    pub country: Option<CountryCode>,
    pub typ: Option<String>,
    pub entities: Vec<Entity>,
    pub links: Option<Vec<Link>>,
    pub remarks: Option<NoticesOrRemarks>,
    pub events: Option<Events>,
    pub rdap_conformance: Option<Vec<String>>,
    pub notices: Option<NoticesOrRemarks>,
    pub port43: Option<String>,
    pub status: Option<Vec<Status>>,
    pub lang: Option<String>,
    pub object_class_name: String,
}

https://tools.ietf.org/html/rfc7483#section-5.5

Fields

handle: Stringstart_autnum: Option<u32>end_autnum: Option<u32>name: Option<String>country: Option<CountryCode>typ: Option<String>entities: Vec<Entity>links: Option<Vec<Link>>remarks: Option<NoticesOrRemarks>events: Option<Events>rdap_conformance: Option<Vec<String>>notices: Option<NoticesOrRemarks>port43: Option<String>status: Option<Vec<Status>>lang: Option<String>object_class_name: String

Trait Implementations

impl Debug for AutNum[src]

impl<'de> Deserialize<'de> for AutNum[src]

impl Serialize for AutNum[src]

Auto Trait Implementations

impl RefUnwindSafe for AutNum

impl Send for AutNum

impl Sync for AutNum

impl Unpin for AutNum

impl UnwindSafe for AutNum

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.