pub struct GetReportsRequest {
pub report_requests: Option<Vec<ReportRequest>>,
pub use_resource_quotas: Option<bool>,
}
Expand description
The batch request containing multiple report request.
§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).
- batch get reports (request)
Fields§
§report_requests: Option<Vec<ReportRequest>>
Requests, each request will have a separate response. There can be a maximum of 5 requests. All requests should have the same dateRanges
, viewId
, segments
, samplingLevel
, and cohortGroup
.
use_resource_quotas: Option<bool>
Enables resource based quotas, (defaults to False
). If this field is set to True
the per view (profile) quotas are governed by the computational cost of the request. Note that using cost based quotas will higher enable sampling rates. (10 Million for SMALL
, 100M for LARGE
. See the limits and quotas documentation for details.
Trait Implementations§
Source§impl Clone for GetReportsRequest
impl Clone for GetReportsRequest
Source§fn clone(&self) -> GetReportsRequest
fn clone(&self) -> GetReportsRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for GetReportsRequest
impl Debug for GetReportsRequest
Source§impl Default for GetReportsRequest
impl Default for GetReportsRequest
Source§fn default() -> GetReportsRequest
fn default() -> GetReportsRequest
Source§impl<'de> Deserialize<'de> for GetReportsRequest
impl<'de> Deserialize<'de> for GetReportsRequest
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 GetReportsRequest
impl Serialize for GetReportsRequest
impl RequestValue for GetReportsRequest
Auto Trait Implementations§
impl Freeze for GetReportsRequest
impl RefUnwindSafe for GetReportsRequest
impl Send for GetReportsRequest
impl Sync for GetReportsRequest
impl Unpin for GetReportsRequest
impl UnwindSafe for GetReportsRequest
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