twitch_highway 0.2.1

Twitch API
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::types::Id;

define_select!(
    #[derive(Debug)]
    TeamSelector<'a> {
        name: &'a str  as by_name,
        id: &'a Id => ID as by_id,
    };
    into_query
);