[][src]Struct rdap_client::parser::Entity

pub struct Entity {
    pub handle: Option<String>,
    pub vcard_array: Option<JCard>,
    pub roles: Option<Vec<Role>>,
    pub public_ids: Option<Vec<PublicId>>,
    pub entities: Option<Vec<Entity>>,
    pub remarks: Option<NoticesOrRemarks>,
    pub links: Option<Vec<Link>>,
    pub events: Option<Events>,
    pub as_event_actor: Option<Events>,
    pub status: Option<Vec<Status>>,
    pub port43: Option<String>,
    pub lang: Option<String>,
    pub object_class_name: String,
}

Fields

handle: Option<String>vcard_array: Option<JCard>roles: Option<Vec<Role>>public_ids: Option<Vec<PublicId>>entities: Option<Vec<Entity>>remarks: Option<NoticesOrRemarks>links: Option<Vec<Link>>events: Option<Events>as_event_actor: Option<Events>status: Option<Vec<Status>>port43: Option<String>lang: Option<String>object_class_name: String

Trait Implementations

impl Debug for Entity[src]

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

impl Serialize for Entity[src]

Auto Trait Implementations

impl RefUnwindSafe for Entity

impl Send for Entity

impl Sync for Entity

impl Unpin for Entity

impl UnwindSafe for Entity

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.