pub struct MonitorHistory {
pub monitor_id: i64,
pub limit: Option<i64>,
pub offset: Option<i64>,
pub has_more: Option<bool>,
pub changes: Vec<Value>,
pub uptime_checks: Vec<Value>,
pub extra: Extra,
}Expand description
GET /v1/monitors/:id/changes — paginated change + uptime history.
Fields§
§monitor_id: i64§limit: Option<i64>§offset: Option<i64>§has_more: Option<bool>§changes: Vec<Value>Content-diff history rows, newest first.
uptime_checks: Vec<Value>Up/down + SSL samples, newest first.
extra: ExtraTrait Implementations§
Source§impl Clone for MonitorHistory
impl Clone for MonitorHistory
Source§fn clone(&self) -> MonitorHistory
fn clone(&self) -> MonitorHistory
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MonitorHistory
impl Debug for MonitorHistory
Source§impl Default for MonitorHistory
impl Default for MonitorHistory
Source§fn default() -> MonitorHistory
fn default() -> MonitorHistory
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MonitorHistorywhere
MonitorHistory: Default,
impl<'de> Deserialize<'de> for MonitorHistorywhere
MonitorHistory: Default,
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 MonitorHistory
impl RefUnwindSafe for MonitorHistory
impl Send for MonitorHistory
impl Sync for MonitorHistory
impl Unpin for MonitorHistory
impl UnsafeUnpin for MonitorHistory
impl UnwindSafe for MonitorHistory
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