pub struct ServiceTestAttributeValueChangeEvent {
pub correlation_id: Option<String>,
pub description: Option<String>,
pub domain: Option<String>,
pub event: Option<ServiceTestAttributeValueChangeEventPayload>,
pub event_id: Option<String>,
pub event_time: Option<DateTime>,
pub event_type: Option<String>,
pub field_path: Option<String>,
pub priority: Option<String>,
pub time_ocurred: Option<DateTime>,
pub title: Option<String>,
}Expand description
The notification data structure
Fields§
§correlation_id: Option<String>The correlation id for this event.
description: Option<String>An explnatory of the event.
domain: Option<String>The domain of the event.
event: Option<ServiceTestAttributeValueChangeEventPayload>The event data structure
event_id: Option<String>The identifier of the notification.
event_time: Option<DateTime>Time of the event occurrence.
event_type: Option<String>The type of the notification.
field_path: Option<String>The path identifying the object field concerned by this notification.
priority: Option<String>A priority.
time_ocurred: Option<DateTime>The time the event occured.
title: Option<String>The title of the event.
Trait Implementations§
Source§impl Clone for ServiceTestAttributeValueChangeEvent
impl Clone for ServiceTestAttributeValueChangeEvent
Source§fn clone(&self) -> ServiceTestAttributeValueChangeEvent
fn clone(&self) -> ServiceTestAttributeValueChangeEvent
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 Default for ServiceTestAttributeValueChangeEvent
impl Default for ServiceTestAttributeValueChangeEvent
Source§fn default() -> ServiceTestAttributeValueChangeEvent
fn default() -> ServiceTestAttributeValueChangeEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServiceTestAttributeValueChangeEvent
impl<'de> Deserialize<'de> for ServiceTestAttributeValueChangeEvent
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 ServiceTestAttributeValueChangeEvent
impl RefUnwindSafe for ServiceTestAttributeValueChangeEvent
impl Send for ServiceTestAttributeValueChangeEvent
impl Sync for ServiceTestAttributeValueChangeEvent
impl Unpin for ServiceTestAttributeValueChangeEvent
impl UnsafeUnpin for ServiceTestAttributeValueChangeEvent
impl UnwindSafe for ServiceTestAttributeValueChangeEvent
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