Struct google_analytics3::WebPropertyRef
source · pub struct WebPropertyRef {
pub kind: Option<String>,
pub href: Option<String>,
pub name: Option<String>,
pub account_id: Option<String>,
pub internal_web_property_id: Option<String>,
pub id: Option<String>,
}Expand description
JSON template for a web property reference.
This type is not used in any activity, and only used as part of another schema.
Fields§
§kind: Option<String>Analytics web property reference.
href: Option<String>Link for this web property.
name: Option<String>Name of this web property.
account_id: Option<String>Account ID to which this web property belongs.
internal_web_property_id: Option<String>Internal ID for this web property.
id: Option<String>Web property ID of the form UA-XXXXX-YY.
Trait Implementations§
source§impl Clone for WebPropertyRef
impl Clone for WebPropertyRef
source§fn clone(&self) -> WebPropertyRef
fn clone(&self) -> WebPropertyRef
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 WebPropertyRef
impl Debug for WebPropertyRef
source§impl Default for WebPropertyRef
impl Default for WebPropertyRef
source§fn default() -> WebPropertyRef
fn default() -> WebPropertyRef
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for WebPropertyRef
impl<'de> Deserialize<'de> for WebPropertyRef
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 WebPropertyRef
impl Serialize for WebPropertyRef
impl Part for WebPropertyRef
Auto Trait Implementations§
impl Freeze for WebPropertyRef
impl RefUnwindSafe for WebPropertyRef
impl Send for WebPropertyRef
impl Sync for WebPropertyRef
impl Unpin for WebPropertyRef
impl UnwindSafe for WebPropertyRef
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