Struct twitch_api2::helix::bits::GetBitsLeaderboardRequest[][src]

#[non_exhaustive]pub struct GetBitsLeaderboardRequest {
    pub count: Option<i32>,
    pub period: Option<String>,
    pub started_at: Option<Timestamp>,
    pub user_id: Option<UserId>,
}
This is supported on crate feature helix only.

Fields (Non-exhaustive)

Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct {{ .. }} syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
count: Option<i32>

Number of results to be returned. Maximum: 100. Default: 10.

period: Option<String>

Time period over which data is aggregated (PST time zone). This parameter interacts with started_at. Valid values follow. Default: "all".

  • "day" – 00:00:00 on the day specified in started_at, through 00:00:00 on the following day.
  • "week" – 00:00:00 on Monday of the week specified in started_at, through 00:00:00 on the following Monday.
  • "month" – 00:00:00 on the first day of the month specified in started_at, through 00:00:00 on the first day of the following month.
  • "year" – 00:00:00 on the first day of the year specified in started_at, through 00:00:00 on the first day of the following year.
  • "all" – The lifetime of the broadcaster's channel. If this is specified (or used by default), started_at is ignored.
started_at: Option<Timestamp>

Timestamp for the period over which the returned data is aggregated. Must be in RFC 3339 format. If this is not provided, data is aggregated over the current period; e.g., the current day/week/month/year. This value is ignored if period is "all".

user_id: Option<UserId>

ID of the user whose results are returned; i.e., the person who paid for the Bits.

Implementations

impl GetBitsLeaderboardRequest[src]

pub fn builder() -> GetBitsLeaderboardRequestBuilder<((), (), (), ())>[src]

Create a builder for building GetBitsLeaderboardRequest. On the builder, call .count(...)(optional), .period(...)(optional), .started_at(...)(optional), .user_id(...)(optional) to set the values of the fields. Finally, call .build() to create the instance of GetBitsLeaderboardRequest.

Trait Implementations

impl Clone for GetBitsLeaderboardRequest[src]

impl Debug for GetBitsLeaderboardRequest[src]

impl<'de> Deserialize<'de> for GetBitsLeaderboardRequest[src]

impl PartialEq<GetBitsLeaderboardRequest> for GetBitsLeaderboardRequest[src]

impl Request for GetBitsLeaderboardRequest[src]

type Response = BitsLeaderboard

Response type. twitch's response will deserialize to this.

impl RequestGet for GetBitsLeaderboardRequest[src]

impl Serialize for GetBitsLeaderboardRequest[src]

impl StructuralPartialEq for GetBitsLeaderboardRequest[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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> Same<T> for T

type Output = T

Should always be Self

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>, 

impl<T> WithSubscriber for T[src]