pub struct CheckQuery {
pub check: String,
pub over: Vec<String>,
pub by: Vec<String>,
pub last: u32,
}Expand description
A service-check query.
Fields§
§check: StringThe check name.
over: Vec<String>.over(...) scope tags.
by: Vec<String>.by(...) grouping tags.
last: u32.last(n) count of recent check runs.
Trait Implementations§
Source§impl Clone for CheckQuery
impl Clone for CheckQuery
Source§fn clone(&self) -> CheckQuery
fn clone(&self) -> CheckQuery
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 CheckQuery
impl Debug for CheckQuery
Source§impl<'de> Deserialize<'de> for CheckQuery
impl<'de> Deserialize<'de> for CheckQuery
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
impl Eq for CheckQuery
Source§impl PartialEq for CheckQuery
impl PartialEq for CheckQuery
Source§fn eq(&self, other: &CheckQuery) -> bool
fn eq(&self, other: &CheckQuery) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CheckQuery
impl Serialize for CheckQuery
impl StructuralPartialEq for CheckQuery
Auto Trait Implementations§
impl Freeze for CheckQuery
impl RefUnwindSafe for CheckQuery
impl Send for CheckQuery
impl Sync for CheckQuery
impl Unpin for CheckQuery
impl UnsafeUnpin for CheckQuery
impl UnwindSafe for CheckQuery
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