Skip to main content

Since

Type Alias Since 

Source
pub type Since = Option<DateTime<Utc>>;
Expand description

Optional timestamp used for fetching only records created after a certain point in time.

This is used for pagination or incremental updates. If None, the endpoint returns results from the beginning (or all available games).

Aliased Type§

pub enum Since {
    None,
    Some(DateTime<Utc>),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(DateTime<Utc>)

Some value of type T.