pub struct GetMonitorsMonitorIdResponseMonitorLastRun {
pub finished_at: Option<String>,
pub started_at: Option<String>,
pub stats: Option<GetMonitorsMonitorIdResponseMonitorLastRunStats>,
pub status: Option<String>,
}
Fields§
§finished_at: Option<String>
The date and time at which the monitor’s previous run completed.
started_at: Option<String>
The date and time at which the monitor’s previous run started.
stats: Option<GetMonitorsMonitorIdResponseMonitorLastRunStats>
Information about the monitor’s stats.
status: Option<String>
The monitor’s status after its last run.
Trait Implementations§
Source§impl Clone for GetMonitorsMonitorIdResponseMonitorLastRun
impl Clone for GetMonitorsMonitorIdResponseMonitorLastRun
Source§fn clone(&self) -> GetMonitorsMonitorIdResponseMonitorLastRun
fn clone(&self) -> GetMonitorsMonitorIdResponseMonitorLastRun
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 GetMonitorsMonitorIdResponseMonitorLastRun
impl<'de> Deserialize<'de> for GetMonitorsMonitorIdResponseMonitorLastRun
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 GetMonitorsMonitorIdResponseMonitorLastRun
impl PartialEq for GetMonitorsMonitorIdResponseMonitorLastRun
Source§fn eq(&self, other: &GetMonitorsMonitorIdResponseMonitorLastRun) -> bool
fn eq(&self, other: &GetMonitorsMonitorIdResponseMonitorLastRun) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetMonitorsMonitorIdResponseMonitorLastRun
Auto Trait Implementations§
impl Freeze for GetMonitorsMonitorIdResponseMonitorLastRun
impl RefUnwindSafe for GetMonitorsMonitorIdResponseMonitorLastRun
impl Send for GetMonitorsMonitorIdResponseMonitorLastRun
impl Sync for GetMonitorsMonitorIdResponseMonitorLastRun
impl Unpin for GetMonitorsMonitorIdResponseMonitorLastRun
impl UnwindSafe for GetMonitorsMonitorIdResponseMonitorLastRun
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