Struct google_analytics3::WebPropertySummary
source · pub struct WebPropertySummary {
pub kind: Option<String>,
pub name: Option<String>,
pub level: Option<String>,
pub profiles: Option<Vec<ProfileSummary>>,
pub website_url: Option<String>,
pub internal_web_property_id: Option<String>,
pub starred: Option<bool>,
pub id: Option<String>,
}Expand description
JSON template for an Analytics WebPropertySummary. WebPropertySummary returns basic information (i.e., summary) for a web property.
This type is not used in any activity, and only used as part of another schema.
Fields§
§kind: Option<String>Resource type for Analytics WebPropertySummary.
name: Option<String>Web property name.
level: Option<String>Level for this web property. Possible values are STANDARD or PREMIUM.
profiles: Option<Vec<ProfileSummary>>List of profiles under this web property.
website_url: Option<String>Website url for this web property.
internal_web_property_id: Option<String>Internal ID for this web property.
starred: Option<bool>Indicates whether this web property is starred or not.
id: Option<String>Web property ID of the form UA-XXXXX-YY.
Trait Implementations§
source§impl Clone for WebPropertySummary
impl Clone for WebPropertySummary
source§fn clone(&self) -> WebPropertySummary
fn clone(&self) -> WebPropertySummary
Returns a copy 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 WebPropertySummary
impl Debug for WebPropertySummary
source§impl Default for WebPropertySummary
impl Default for WebPropertySummary
source§fn default() -> WebPropertySummary
fn default() -> WebPropertySummary
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for WebPropertySummary
impl<'de> Deserialize<'de> for WebPropertySummary
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 Serialize for WebPropertySummary
impl Serialize for WebPropertySummary
impl Part for WebPropertySummary
Auto Trait Implementations§
impl Freeze for WebPropertySummary
impl RefUnwindSafe for WebPropertySummary
impl Send for WebPropertySummary
impl Sync for WebPropertySummary
impl Unpin for WebPropertySummary
impl UnwindSafe for WebPropertySummary
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
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)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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