twitch_types/
eventsub.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
manual_braid! {
    /// An EventSub Subscription ID
    pub struct EventSubId;
    pub struct EventSubIdRef;
}
impl_extra!(EventSubId, EventSubIdRef);

manual_braid! {
    /// An ID of a Conduit
    pub struct ConduitId;
    pub struct ConduitIdRef;
}
impl_extra!(ConduitId, ConduitIdRef);

manual_braid! {
    /// An ID of a Conduit Shard
    pub struct ConduitShardId;
    pub struct ConduitShardIdRef;
}
impl_extra!(ConduitShardId, ConduitShardIdRef);