Struct google_analytics3::CustomMetric
source · pub struct CustomMetric {Show 15 fields
pub index: Option<i32>,
pub kind: Option<String>,
pub name: Option<String>,
pub created: Option<String>,
pub max_value: Option<String>,
pub min_value: Option<String>,
pub updated: Option<String>,
pub web_property_id: Option<String>,
pub active: Option<bool>,
pub scope: Option<String>,
pub parent_link: Option<CustomMetricParentLink>,
pub type_: Option<String>,
pub id: Option<String>,
pub self_link: Option<String>,
pub account_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 patch management (request|response)
- custom metrics insert management (request|response)
- custom metrics get management (response)
- custom metrics update management (request|response)
Fields§
§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.
name: Option<String>Name of the custom metric.
created: Option<String>Time the custom metric was created.
max_value: Option<String>Max value of custom metric.
min_value: Option<String>Min value of custom metric.
updated: Option<String>Time the custom metric was last modified.
web_property_id: Option<String>Property ID.
active: Option<bool>Boolean indicating whether the custom metric is active.
scope: Option<String>Scope of the custom metric: HIT or PRODUCT.
parent_link: Option<CustomMetricParentLink>Parent link for the custom metric. Points to the property to which the custom metric belongs.
type_: Option<String>Data type of custom metric.
id: Option<String>Custom metric ID.
self_link: Option<String>Link for the custom metric
account_id: Option<String>Account 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 Deserialize for CustomMetric
impl Deserialize for CustomMetric
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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