pub struct InstantQuery {
pub query: String,
pub time: Option<i64>,
pub timeout: Option<String>,
}
Expand description
Instant query request struct
Fields§
§query: String
PromQL Query which will be sent to API
time: Option<i64>
Evaluation timestamp in unix timestamp format
timeout: Option<String>
Timeout duration for evaluating the result
Trait Implementations§
Source§impl Clone for InstantQuery
impl Clone for InstantQuery
Source§fn clone(&self) -> InstantQuery
fn clone(&self) -> InstantQuery
Returns a copy 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 Debug for InstantQuery
impl Debug for InstantQuery
Source§impl<'de> Deserialize<'de> for InstantQuery
impl<'de> Deserialize<'de> for InstantQuery
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 InstantQuery
impl RefUnwindSafe for InstantQuery
impl Send for InstantQuery
impl Sync for InstantQuery
impl Unpin for InstantQuery
impl UnwindSafe for InstantQuery
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