pub struct GetMonitorsMonitorIdResponseMonitor {
pub collection_uid: Option<String>,
pub distribution: Option<Vec<Option<Value>>>,
pub environment_uid: Option<String>,
pub id: Option<String>,
pub last_run: Option<GetMonitorsMonitorIdResponseMonitorLastRun>,
pub name: Option<String>,
pub notifications: Option<GetMonitorsMonitorIdResponseMonitorNotifications>,
pub options: Option<GetMonitorsMonitorIdResponseMonitorOptions>,
pub owner: Option<f64>,
pub schedule: Option<GetMonitorsMonitorIdResponseMonitorSchedule>,
pub uid: Option<String>,
}
Fields§
§collection_uid: Option<String>
The monitor’s associated collection unique ID.
distribution: Option<Vec<Option<Value>>>
A list of the monitor’s geographic regions.
environment_uid: Option<String>
The monitor’s associated environment unique ID.
id: Option<String>
The monitor’s ID.
last_run: Option<GetMonitorsMonitorIdResponseMonitorLastRun>
Information about the monitor’s previous run.
name: Option<String>
The monitor’s name.
notifications: Option<GetMonitorsMonitorIdResponseMonitorNotifications>
Information about the monitor’s notification settings.
options: Option<GetMonitorsMonitorIdResponseMonitorOptions>
Information about the monitor’s option settings.
owner: Option<f64>
The ID of monitor’s owner.
schedule: Option<GetMonitorsMonitorIdResponseMonitorSchedule>
Information about the monitor’s schedule.
uid: Option<String>
The monitor’s unique ID.
Trait Implementations§
Source§impl Clone for GetMonitorsMonitorIdResponseMonitor
impl Clone for GetMonitorsMonitorIdResponseMonitor
Source§fn clone(&self) -> GetMonitorsMonitorIdResponseMonitor
fn clone(&self) -> GetMonitorsMonitorIdResponseMonitor
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 GetMonitorsMonitorIdResponseMonitor
impl<'de> Deserialize<'de> for GetMonitorsMonitorIdResponseMonitor
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 GetMonitorsMonitorIdResponseMonitor
impl PartialEq for GetMonitorsMonitorIdResponseMonitor
Source§fn eq(&self, other: &GetMonitorsMonitorIdResponseMonitor) -> bool
fn eq(&self, other: &GetMonitorsMonitorIdResponseMonitor) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetMonitorsMonitorIdResponseMonitor
Auto Trait Implementations§
impl Freeze for GetMonitorsMonitorIdResponseMonitor
impl RefUnwindSafe for GetMonitorsMonitorIdResponseMonitor
impl Send for GetMonitorsMonitorIdResponseMonitor
impl Sync for GetMonitorsMonitorIdResponseMonitor
impl Unpin for GetMonitorsMonitorIdResponseMonitor
impl UnwindSafe for GetMonitorsMonitorIdResponseMonitor
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