pub struct ResultTableColumnHeaders {
pub data_type: Option<String>,
pub column_type: Option<String>,
pub name: Option<String>,
}
Expand description
This value specifies information about the data returned in the rows fields. Each item in the columnHeaders list identifies a field returned in the rows value, which contains a list of comma-delimited data. The columnHeaders list will begin with the dimensions specified in the API request, which will be followed by the metrics specified in the API request. The order of both dimensions and metrics will match the ordering in the API request. For example, if the API request contains the parameters dimensions=ageGroup,gender&metrics=viewerPercentage, the API response will return columns in this order: ageGroup,gender,viewerPercentage.
This type is not used in any activity, and only used as part of another schema.
Fields§
§data_type: Option<String>
The type of the data in the column (STRING, INTEGER, FLOAT, etc.).
column_type: Option<String>
The type of the column (DIMENSION or METRIC).
name: Option<String>
The name of the dimension or metric.
Trait Implementations§
Source§impl Clone for ResultTableColumnHeaders
impl Clone for ResultTableColumnHeaders
Source§fn clone(&self) -> ResultTableColumnHeaders
fn clone(&self) -> ResultTableColumnHeaders
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ResultTableColumnHeaders
impl Debug for ResultTableColumnHeaders
Source§impl Default for ResultTableColumnHeaders
impl Default for ResultTableColumnHeaders
Source§fn default() -> ResultTableColumnHeaders
fn default() -> ResultTableColumnHeaders
Source§impl<'de> Deserialize<'de> for ResultTableColumnHeaders
impl<'de> Deserialize<'de> for ResultTableColumnHeaders
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 ResultTableColumnHeaders
impl Serialize for ResultTableColumnHeaders
impl NestedType for ResultTableColumnHeaders
impl Part for ResultTableColumnHeaders
Auto Trait Implementations§
impl Freeze for ResultTableColumnHeaders
impl RefUnwindSafe for ResultTableColumnHeaders
impl Send for ResultTableColumnHeaders
impl Sync for ResultTableColumnHeaders
impl Unpin for ResultTableColumnHeaders
impl UnwindSafe for ResultTableColumnHeaders
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> 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