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