Struct google_analytics3::CustomDataSource
source · pub struct CustomDataSource {Show 16 fields
pub updated: Option<String>,
pub description: Option<String>,
pub upload_type: Option<String>,
pub child_link: Option<CustomDataSourceChildLink>,
pub web_property_id: Option<String>,
pub import_behavior: Option<String>,
pub id: Option<String>,
pub account_id: Option<String>,
pub kind: Option<String>,
pub name: Option<String>,
pub created: Option<String>,
pub profiles_linked: Option<Vec<String>>,
pub parent_link: Option<CustomDataSourceParentLink>,
pub type_: Option<String>,
pub self_link: Option<String>,
pub schema: Option<Vec<String>>,
}Expand description
JSON template for an Analytics custom data source.
This type is not used in any activity, and only used as part of another schema.
Fields§
§updated: Option<String>Time this custom data source was last modified.
description: Option<String>Description of custom data source.
upload_type: Option<String>Upload type of the custom data source.
child_link: Option<CustomDataSourceChildLink>no description provided
web_property_id: Option<String>Web property ID of the form UA-XXXXX-YY to which this custom data source belongs.
import_behavior: Option<String>no description provided
id: Option<String>Custom data source ID.
account_id: Option<String>Account ID to which this custom data source belongs.
kind: Option<String>Resource type for Analytics custom data source.
name: Option<String>Name of this custom data source.
created: Option<String>Time this custom data source was created.
profiles_linked: Option<Vec<String>>IDs of views (profiles) linked to the custom data source.
parent_link: Option<CustomDataSourceParentLink>Parent link for this custom data source. Points to the web property to which this custom data source belongs.
type_: Option<String>Type of the custom data source.
self_link: Option<String>Link for this Analytics custom data source.
schema: Option<Vec<String>>Collection of schema headers of the custom data source.
Trait Implementations§
source§impl Clone for CustomDataSource
impl Clone for CustomDataSource
source§fn clone(&self) -> CustomDataSource
fn clone(&self) -> CustomDataSource
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CustomDataSource
impl Debug for CustomDataSource
source§impl Default for CustomDataSource
impl Default for CustomDataSource
source§fn default() -> CustomDataSource
fn default() -> CustomDataSource
source§impl<'de> Deserialize<'de> for CustomDataSource
impl<'de> Deserialize<'de> for CustomDataSource
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 CustomDataSource
impl Serialize for CustomDataSource
impl Part for CustomDataSource
Auto Trait Implementations§
impl Freeze for CustomDataSource
impl RefUnwindSafe for CustomDataSource
impl Send for CustomDataSource
impl Sync for CustomDataSource
impl Unpin for CustomDataSource
impl UnwindSafe for CustomDataSource
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