pub struct RdapEvent {
pub event_action: String,
pub event_date: String,
pub event_actor: Option<String>,
}Expand description
A lifecycle event associated with a registration object.
Fields§
§event_action: StringType of event (e.g. “registration”, “expiration”).
event_date: StringRFC 3339 timestamp.
event_actor: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for RdapEvent
impl<'de> Deserialize<'de> for RdapEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RdapEvent
impl RefUnwindSafe for RdapEvent
impl Send for RdapEvent
impl Sync for RdapEvent
impl Unpin for RdapEvent
impl UnsafeUnpin for RdapEvent
impl UnwindSafe for RdapEvent
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