pub struct Visit {
    pub scene_path: Vec<String>,
    pub campaign_id: String,
    pub times: u32,
    pub first: DateTime<Utc>,
    pub last: DateTime<Utc>,
}

Fields

scene_path: Vec<String>

A hierarchical path to the scene visited.

campaign_id: String

The campaign ID this data point is for.

times: u32

Number of times this data point has arisen between first and last. OPTIONAL, defaults to 1.

first: DateTime<Utc>

The first time this data point has arisen. OPTIONAL, defaults to now.

last: DateTime<Utc>

The last time this data point has arisen. OPTIONAL, defaults to now.

Implementations

Returns a visit with the given scene_path and campaign_id and sane defaults for the other properties.

Arguments
  • scene_path: A hierarchical path to the scene visited.
  • campaign_id: The campaign ID this data point is for.
Defaults:
  • times: 1.
  • first: now.
  • last: now.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.