pub struct CustomMetric {Show 15 fields
pub account_id: Option<String>,
pub active: Option<bool>,
pub created: Option<DateTime<Utc>>,
pub id: Option<String>,
pub index: Option<i32>,
pub kind: Option<String>,
pub max_value: Option<String>,
pub min_value: Option<String>,
pub name: Option<String>,
pub parent_link: Option<CustomMetricParentLink>,
pub scope: Option<String>,
pub self_link: Option<String>,
pub type_: Option<String>,
pub updated: Option<DateTime<Utc>>,
pub web_property_id: Option<String>,
}
Expand description
JSON template for Analytics Custom Metric.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- custom metrics get management (response)
- custom metrics insert management (request|response)
- custom metrics patch management (request|response)
- custom metrics update management (request|response)
Fields§
§account_id: Option<String>
Account ID.
active: Option<bool>
Boolean indicating whether the custom metric is active.
created: Option<DateTime<Utc>>
Time the custom metric was created.
id: Option<String>
Custom metric ID.
index: Option<i32>
Index of the custom metric.
kind: Option<String>
Kind value for a custom metric. Set to “analytics#customMetric”. It is a read-only field.
max_value: Option<String>
Max value of custom metric.
min_value: Option<String>
Min value of custom metric.
name: Option<String>
Name of the custom metric.
parent_link: Option<CustomMetricParentLink>
Parent link for the custom metric. Points to the property to which the custom metric belongs.
scope: Option<String>
Scope of the custom metric: HIT or PRODUCT.
self_link: Option<String>
Link for the custom metric
type_: Option<String>
Data type of custom metric.
updated: Option<DateTime<Utc>>
Time the custom metric was last modified.
web_property_id: Option<String>
Property ID.
Trait Implementations§
Source§impl Clone for CustomMetric
impl Clone for CustomMetric
Source§fn clone(&self) -> CustomMetric
fn clone(&self) -> CustomMetric
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for CustomMetric
impl Debug for CustomMetric
Source§impl Default for CustomMetric
impl Default for CustomMetric
Source§fn default() -> CustomMetric
fn default() -> CustomMetric
Source§impl<'de> Deserialize<'de> for CustomMetric
impl<'de> Deserialize<'de> for CustomMetric
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>,
Source§impl Serialize for CustomMetric
impl Serialize for CustomMetric
impl RequestValue for CustomMetric
impl ResponseResult for CustomMetric
Auto Trait Implementations§
impl Freeze for CustomMetric
impl RefUnwindSafe for CustomMetric
impl Send for CustomMetric
impl Sync for CustomMetric
impl Unpin for CustomMetric
impl UnwindSafe for CustomMetric
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more