pub struct ServiceCreateEventPayload {
pub service: Option<Service>,
}Expand description
The event data structure
Fields§
§service: Option<Service>Service is a base class for defining the Service hierarchy. All Services are characterized as either being possibly visible and usable by a Customer or not. This gives rise to the two subclasses of Service: CustomerFacingService and ResourceFacingService.
Trait Implementations§
Source§impl Clone for ServiceCreateEventPayload
impl Clone for ServiceCreateEventPayload
Source§fn clone(&self) -> ServiceCreateEventPayload
fn clone(&self) -> ServiceCreateEventPayload
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ServiceCreateEventPayload
impl Debug for ServiceCreateEventPayload
Source§impl<'de> Deserialize<'de> for ServiceCreateEventPayload
impl<'de> Deserialize<'de> for ServiceCreateEventPayload
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
Source§impl Display for ServiceCreateEventPayload
impl Display for ServiceCreateEventPayload
Auto Trait Implementations§
impl Freeze for ServiceCreateEventPayload
impl RefUnwindSafe for ServiceCreateEventPayload
impl Send for ServiceCreateEventPayload
impl Sync for ServiceCreateEventPayload
impl Unpin for ServiceCreateEventPayload
impl UnsafeUnpin for ServiceCreateEventPayload
impl UnwindSafe for ServiceCreateEventPayload
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