Struct gapi_grpc::google::analytics::data::v1beta::CohortSpec[][src]

pub struct CohortSpec {
    pub cohorts: Vec<Cohort>,
    pub cohorts_range: Option<CohortsRange>,
    pub cohort_report_settings: Option<CohortReportSettings>,
}

The specification of cohorts for a cohort report.

Cohort reports create a time series of user retention for the cohort. For example, you could select the cohort of users that were acquired in the first week of September and follow that cohort for the next six weeks. Selecting the users acquired in the first week of September cohort is specified in the cohort object. Following that cohort for the next six weeks is specified in the cohortsRange object.

For examples, see Cohort Report Examples.

The report response could show a weekly time series where say your app has retained 60% of this cohort after three weeks and 25% of this cohort after six weeks. These two percentages can be calculated by the metric cohortActiveUsers/cohortTotalUsers and will be separate rows in the report.

Fields

cohorts: Vec<Cohort>

Defines the selection criteria to group users into cohorts.

Most cohort reports define only a single cohort. If multiple cohorts are specified, each cohort can be recognized in the report by their name.

cohorts_range: Option<CohortsRange>

Cohort reports follow cohorts over an extended reporting date range. This range specifies an offset duration to follow the cohorts over.

cohort_report_settings: Option<CohortReportSettings>

Optional settings for a cohort report.

Trait Implementations

impl Clone for CohortSpec[src]

impl Debug for CohortSpec[src]

impl Default for CohortSpec[src]

impl Message for CohortSpec[src]

impl PartialEq<CohortSpec> for CohortSpec[src]

impl StructuralPartialEq for CohortSpec[src]

Auto Trait Implementations

impl RefUnwindSafe for CohortSpec

impl Send for CohortSpec

impl Sync for CohortSpec

impl Unpin for CohortSpec

impl UnwindSafe for CohortSpec

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]