pub struct ServiceTestDeleteEventPayload {
pub service_test: Option<ServiceTest>,
}Expand description
The event data structure
Fields§
§service_test: Option<ServiceTest>A service test is an entity that exists for a controlled test invocation on a service. The service test is executed according to a schedule and contains service test configuration parameters that are to be applied at execution time, and service test measures that result.
Trait Implementations§
Source§impl Clone for ServiceTestDeleteEventPayload
impl Clone for ServiceTestDeleteEventPayload
Source§fn clone(&self) -> ServiceTestDeleteEventPayload
fn clone(&self) -> ServiceTestDeleteEventPayload
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 ServiceTestDeleteEventPayload
impl Default for ServiceTestDeleteEventPayload
Source§fn default() -> ServiceTestDeleteEventPayload
fn default() -> ServiceTestDeleteEventPayload
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServiceTestDeleteEventPayload
impl<'de> Deserialize<'de> for ServiceTestDeleteEventPayload
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 ServiceTestDeleteEventPayload
impl RefUnwindSafe for ServiceTestDeleteEventPayload
impl Send for ServiceTestDeleteEventPayload
impl Sync for ServiceTestDeleteEventPayload
impl Unpin for ServiceTestDeleteEventPayload
impl UnsafeUnpin for ServiceTestDeleteEventPayload
impl UnwindSafe for ServiceTestDeleteEventPayload
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