pub struct SyntheticQueryResponse {
pub is_string: Option<bool>,
pub datapoints: Vec<SyntheticDataPoint>,
}Expand description
Response when querying synthetic data points.
Fields§
§is_string: Option<bool>Whether the results are strings. Currently, this is always false.
datapoints: Vec<SyntheticDataPoint>List of computed data points.
Trait Implementations§
Source§impl Clone for SyntheticQueryResponse
impl Clone for SyntheticQueryResponse
Source§fn clone(&self) -> SyntheticQueryResponse
fn clone(&self) -> SyntheticQueryResponse
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 Debug for SyntheticQueryResponse
impl Debug for SyntheticQueryResponse
Source§impl<'de> Deserialize<'de> for SyntheticQueryResponse
impl<'de> Deserialize<'de> for SyntheticQueryResponse
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 SyntheticQueryResponse
impl RefUnwindSafe for SyntheticQueryResponse
impl Send for SyntheticQueryResponse
impl Sync for SyntheticQueryResponse
impl Unpin for SyntheticQueryResponse
impl UnwindSafe for SyntheticQueryResponse
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