pub struct CustomDimensions {
pub items: Option<Vec<CustomDimension>>,
pub items_per_page: Option<i32>,
pub kind: Option<String>,
pub next_link: Option<String>,
pub previous_link: Option<String>,
pub start_index: Option<i32>,
pub total_results: Option<i32>,
pub username: Option<String>,
}
Expand description
A custom dimension collection lists Analytics custom dimensions to which the user has access. Each resource in the collection corresponds to a single Analytics custom dimension.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- custom dimensions list management (response)
Fields§
§items: Option<Vec<CustomDimension>>
Collection of custom dimensions.
items_per_page: Option<i32>
The maximum number of resources the response can contain, regardless of the actual number of resources returned. Its value ranges from 1 to 1000 with a value of 1000 by default, or otherwise specified by the max-results query parameter.
kind: Option<String>
Collection type.
next_link: Option<String>
Link to next page for this custom dimension collection.
previous_link: Option<String>
Link to previous page for this custom dimension collection.
start_index: Option<i32>
The starting index of the resources, which is 1 by default or otherwise specified by the start-index query parameter.
total_results: Option<i32>
The total number of results for the query, regardless of the number of results in the response.
username: Option<String>
Email ID of the authenticated user
Trait Implementations§
Source§impl Clone for CustomDimensions
impl Clone for CustomDimensions
Source§fn clone(&self) -> CustomDimensions
fn clone(&self) -> CustomDimensions
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for CustomDimensions
impl Debug for CustomDimensions
Source§impl Default for CustomDimensions
impl Default for CustomDimensions
Source§fn default() -> CustomDimensions
fn default() -> CustomDimensions
Source§impl<'de> Deserialize<'de> for CustomDimensions
impl<'de> Deserialize<'de> for CustomDimensions
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>,
Source§impl Serialize for CustomDimensions
impl Serialize for CustomDimensions
impl ResponseResult for CustomDimensions
Auto Trait Implementations§
impl Freeze for CustomDimensions
impl RefUnwindSafe for CustomDimensions
impl Send for CustomDimensions
impl Sync for CustomDimensions
impl Unpin for CustomDimensions
impl UnwindSafe for CustomDimensions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
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>
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