pub struct DomainInspectorEntryDimensions {
pub region: Option<String>,
pub datacenter: Option<String>,
pub domain: Option<String>,
}Expand description
DomainInspectorEntryDimensions : The unique combination of dimensions associated with this timeseries.
Fields§
§region: Option<String>The geographic region from which the edge responses in this data entry were delivered. If unspecified, results are aggregated across regions.
datacenter: Option<String>The POP from which the edge responses in this data entry were delivered. If unspecified, results are aggregated across POPs.
domain: Option<String>The domain from which the edge responses in this data entry were delivered. If unspecified, results are aggregated across domains.
Implementations§
Source§impl DomainInspectorEntryDimensions
impl DomainInspectorEntryDimensions
Sourcepub fn new() -> DomainInspectorEntryDimensions
pub fn new() -> DomainInspectorEntryDimensions
The unique combination of dimensions associated with this timeseries.
Trait Implementations§
Source§impl Clone for DomainInspectorEntryDimensions
impl Clone for DomainInspectorEntryDimensions
Source§fn clone(&self) -> DomainInspectorEntryDimensions
fn clone(&self) -> DomainInspectorEntryDimensions
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 Default for DomainInspectorEntryDimensions
impl Default for DomainInspectorEntryDimensions
Source§fn default() -> DomainInspectorEntryDimensions
fn default() -> DomainInspectorEntryDimensions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DomainInspectorEntryDimensions
impl<'de> Deserialize<'de> for DomainInspectorEntryDimensions
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 DomainInspectorEntryDimensions
impl PartialEq for DomainInspectorEntryDimensions
Source§fn eq(&self, other: &DomainInspectorEntryDimensions) -> bool
fn eq(&self, other: &DomainInspectorEntryDimensions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DomainInspectorEntryDimensions
Auto Trait Implementations§
impl Freeze for DomainInspectorEntryDimensions
impl RefUnwindSafe for DomainInspectorEntryDimensions
impl Send for DomainInspectorEntryDimensions
impl Sync for DomainInspectorEntryDimensions
impl Unpin for DomainInspectorEntryDimensions
impl UnwindSafe for DomainInspectorEntryDimensions
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