Struct google_analytics3::GoalParentLink
source · pub struct GoalParentLink {
pub href: Option<String>,
pub type_: Option<String>,
}Expand description
Parent link for a goal. Points to the view (profile) to which this goal belongs.
This type is not used in any activity, and only used as part of another schema.
Fields§
§href: Option<String>Link to the view (profile) to which this goal belongs.
type_: Option<String>Value is “analytics#profile”.
Trait Implementations§
source§impl Clone for GoalParentLink
impl Clone for GoalParentLink
source§fn clone(&self) -> GoalParentLink
fn clone(&self) -> GoalParentLink
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 GoalParentLink
impl Debug for GoalParentLink
source§impl Default for GoalParentLink
impl Default for GoalParentLink
source§fn default() -> GoalParentLink
fn default() -> GoalParentLink
Returns the “default value” for a type. Read more
source§impl Deserialize for GoalParentLink
impl Deserialize for GoalParentLink
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
Deserialize this value from the given Serde deserializer. Read more
source§impl Serialize for GoalParentLink
impl Serialize for GoalParentLink
impl NestedType for GoalParentLink
impl Part for GoalParentLink
Auto Trait Implementations§
impl Freeze for GoalParentLink
impl RefUnwindSafe for GoalParentLink
impl Send for GoalParentLink
impl Sync for GoalParentLink
impl Unpin for GoalParentLink
impl UnwindSafe for GoalParentLink
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