pub struct PostMonitorsMonitorIdRunResponseRunInfo {
pub collection_uid: Option<String>,
pub environment_uid: Option<String>,
pub finished_at: Option<String>,
pub job_id: Option<String>,
pub monitor_id: Option<String>,
pub name: Option<String>,
pub started_at: Option<String>,
pub status: Option<String>,
}
Fields§
§collection_uid: Option<String>
The monitor’s associated collection unique ID.
environment_uid: Option<String>
The monitor’s associated environment unique ID.
finished_at: Option<String>
The date and time at which the monitor’s run completed.
job_id: Option<String>
The monitor’s run job ID.
monitor_id: Option<String>
The monitor’s ID.
name: Option<String>
The monitor’s name.
started_at: Option<String>
The date and time at which the monitor run began.
status: Option<String>
The monitor run’s status.
Trait Implementations§
Source§impl Clone for PostMonitorsMonitorIdRunResponseRunInfo
impl Clone for PostMonitorsMonitorIdRunResponseRunInfo
Source§fn clone(&self) -> PostMonitorsMonitorIdRunResponseRunInfo
fn clone(&self) -> PostMonitorsMonitorIdRunResponseRunInfo
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<'de> Deserialize<'de> for PostMonitorsMonitorIdRunResponseRunInfo
impl<'de> Deserialize<'de> for PostMonitorsMonitorIdRunResponseRunInfo
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 PartialEq for PostMonitorsMonitorIdRunResponseRunInfo
impl PartialEq for PostMonitorsMonitorIdRunResponseRunInfo
Source§fn eq(&self, other: &PostMonitorsMonitorIdRunResponseRunInfo) -> bool
fn eq(&self, other: &PostMonitorsMonitorIdRunResponseRunInfo) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PostMonitorsMonitorIdRunResponseRunInfo
Auto Trait Implementations§
impl Freeze for PostMonitorsMonitorIdRunResponseRunInfo
impl RefUnwindSafe for PostMonitorsMonitorIdRunResponseRunInfo
impl Send for PostMonitorsMonitorIdRunResponseRunInfo
impl Sync for PostMonitorsMonitorIdRunResponseRunInfo
impl Unpin for PostMonitorsMonitorIdRunResponseRunInfo
impl UnwindSafe for PostMonitorsMonitorIdRunResponseRunInfo
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