pub struct QueryAudienceExportResponse {
pub audience_export: Option<AudienceExport>,
pub audience_rows: Option<Vec<V1betaAudienceRow>>,
pub row_count: Option<i32>,
}
Expand description
A list of users in an audience export.
§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).
- audience exports query properties (response)
Fields§
§audience_export: Option<AudienceExport>
Configuration data about AudienceExport being queried. Returned to help interpret the audience rows in this response. For example, the dimensions in this AudienceExport correspond to the columns in the AudienceRows.
audience_rows: Option<Vec<V1betaAudienceRow>>
Rows for each user in an audience export. The number of rows in this response will be less than or equal to request’s page size.
row_count: Option<i32>
The total number of rows in the AudienceExport result. rowCount
is independent of the number of rows returned in the response, the limit
request parameter, and the offset
request parameter. For example if a query returns 175 rows and includes limit
of 50 in the API request, the response will contain rowCount
of 175 but only 50 rows. To learn more about this pagination parameter, see Pagination.
Trait Implementations§
Source§impl Clone for QueryAudienceExportResponse
impl Clone for QueryAudienceExportResponse
Source§fn clone(&self) -> QueryAudienceExportResponse
fn clone(&self) -> QueryAudienceExportResponse
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for QueryAudienceExportResponse
impl Debug for QueryAudienceExportResponse
Source§impl Default for QueryAudienceExportResponse
impl Default for QueryAudienceExportResponse
Source§fn default() -> QueryAudienceExportResponse
fn default() -> QueryAudienceExportResponse
Source§impl<'de> Deserialize<'de> for QueryAudienceExportResponse
impl<'de> Deserialize<'de> for QueryAudienceExportResponse
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>,
impl ResponseResult for QueryAudienceExportResponse
Auto Trait Implementations§
impl Freeze for QueryAudienceExportResponse
impl RefUnwindSafe for QueryAudienceExportResponse
impl Send for QueryAudienceExportResponse
impl Sync for QueryAudienceExportResponse
impl Unpin for QueryAudienceExportResponse
impl UnwindSafe for QueryAudienceExportResponse
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