Struct google_analyticsreporting4::DynamicSegment[][src]

pub struct DynamicSegment {
    pub session_segment: Option<SegmentDefinition>,
    pub name: Option<String>,
    pub user_segment: Option<SegmentDefinition>,
}

Dynamic segment definition for defining the segment within the request. A segment can select users, sessions or both.

This type is not used in any activity, and only used as part of another schema.

Fields

Session Segment to select sessions to include in the segment.

The name of the dynamic segment.

User Segment to select users to include in the segment.

Trait Implementations

impl Default for DynamicSegment
[src]

Returns the "default value" for a type. Read more

impl Clone for DynamicSegment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DynamicSegment
[src]

Formats the value using the given formatter. Read more

impl Part for DynamicSegment
[src]

Auto Trait Implementations