pub struct QueryExperience {
pub endpoint_id: i64,
pub query_count: i64,
pub latency: Option<f64>,
}Expand description
Class representing a Traffic Manager HeatMap query experience properties.
Fields§
§endpoint_id: i64The id of the endpoint from the ‘endpoints’ array which these queries were routed to.
query_count: i64The number of queries originating from this location.
latency: Option<f64>The latency experienced by queries originating from this location.
Implementations§
Trait Implementations§
Source§impl Clone for QueryExperience
impl Clone for QueryExperience
Source§fn clone(&self) -> QueryExperience
fn clone(&self) -> QueryExperience
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 QueryExperience
impl Debug for QueryExperience
Source§impl<'de> Deserialize<'de> for QueryExperience
impl<'de> Deserialize<'de> for QueryExperience
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 QueryExperience
impl PartialEq for QueryExperience
Source§impl Serialize for QueryExperience
impl Serialize for QueryExperience
impl StructuralPartialEq for QueryExperience
Auto Trait Implementations§
impl Freeze for QueryExperience
impl RefUnwindSafe for QueryExperience
impl Send for QueryExperience
impl Sync for QueryExperience
impl Unpin for QueryExperience
impl UnwindSafe for QueryExperience
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