pub enum MonitorCheckInStatus {
Ok,
Error,
InProgress,
Missed,
Unknown,
}
Expand description
Represents the status of the monitor check-in
Variants§
Ok
Check-in had no issues during execution.
Error
Check-in failed or otherwise had some issues.
InProgress
Check-in is expectred to complete.
Missed
Monitor did not check in on time.
Unknown
No status was passed.
Trait Implementations§
source§impl Clone for MonitorCheckInStatus
impl Clone for MonitorCheckInStatus
source§fn clone(&self) -> MonitorCheckInStatus
fn clone(&self) -> MonitorCheckInStatus
Returns a copy 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 MonitorCheckInStatus
impl Debug for MonitorCheckInStatus
source§impl<'de> Deserialize<'de> for MonitorCheckInStatus
impl<'de> Deserialize<'de> for MonitorCheckInStatus
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<MonitorCheckInStatus, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<MonitorCheckInStatus, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for MonitorCheckInStatus
impl PartialEq for MonitorCheckInStatus
source§fn eq(&self, other: &MonitorCheckInStatus) -> bool
fn eq(&self, other: &MonitorCheckInStatus) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for MonitorCheckInStatus
impl Serialize for MonitorCheckInStatus
source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for MonitorCheckInStatus
impl StructuralPartialEq for MonitorCheckInStatus
Auto Trait Implementations§
impl Freeze for MonitorCheckInStatus
impl RefUnwindSafe for MonitorCheckInStatus
impl Send for MonitorCheckInStatus
impl Sync for MonitorCheckInStatus
impl Unpin for MonitorCheckInStatus
impl UnwindSafe for MonitorCheckInStatus
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