Struct google_analytics3::Account
source · pub struct Account {
pub kind: Option<String>,
pub name: Option<String>,
pub created: Option<String>,
pub updated: Option<String>,
pub child_link: Option<AccountChildLink>,
pub starred: Option<bool>,
pub id: Option<String>,
pub self_link: Option<String>,
pub permissions: Option<AccountPermissions>,
}Expand description
JSON template for Analytics account entry.
This type is not used in any activity, and only used as part of another schema.
Fields§
§kind: Option<String>Resource type for Analytics account.
name: Option<String>Account name.
created: Option<String>Time the account was created.
updated: Option<String>Time the account was last modified.
child_link: Option<AccountChildLink>Child link for an account entry. Points to the list of web properties for this account.
starred: Option<bool>Indicates whether this account is starred or not.
id: Option<String>Account ID.
self_link: Option<String>Link for this account.
permissions: Option<AccountPermissions>Permissions the user has for this account.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Account
impl<'de> Deserialize<'de> for Account
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
impl Part for Account
Auto Trait Implementations§
impl Freeze for Account
impl RefUnwindSafe for Account
impl Send for Account
impl Sync for Account
impl Unpin for Account
impl UnwindSafe for Account
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