pub struct Greeting {
pub service_id: String,
pub service_date: DateTime<Utc>,
pub svc_menu: ServiceMenu,
pub dcp: Dcp,
}
Expand description
Type corresponding to the
Fields§
§service_id: String
The service ID
service_date: DateTime<Utc>
The date from the EPP server
Data under the
dcp: Dcp
Data under the
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Greeting
impl<'de> Deserialize<'de> for Greeting
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
impl Eq for Greeting
impl StructuralPartialEq for Greeting
Auto Trait Implementations§
impl Freeze for Greeting
impl RefUnwindSafe for Greeting
impl Send for Greeting
impl Sync for Greeting
impl Unpin for Greeting
impl UnwindSafe for Greeting
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