1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
use super::{
marker::{
ApplicationMarker, AttachmentMarker, AuditLogEntryMarker, ChannelMarker, CommandMarker,
CommandVersionMarker, EmojiMarker, GenericMarker, GuildMarker, IntegrationMarker,
InteractionMarker, MessageMarker, OauthSkuMarker, OauthTeamMarker, RoleMarker, StageMarker,
StickerBannerAssetMarker, StickerMarker, StickerPackMarker, StickerPackSkuMarker,
UserMarker, WebhookMarker,
},
Id,
};
#[deprecated(since = "0.9.0", note = "use `Id` and its marker types")]
pub type ApplicationId = Id<ApplicationMarker>;
#[deprecated(since = "0.9.0", note = "use `Id` and its marker types")]
pub type AttachmentId = Id<AttachmentMarker>;
#[deprecated(since = "0.9.0", note = "use `Id` and its marker types")]
pub type AuditLogEntryId = Id<AuditLogEntryMarker>;
#[deprecated(since = "0.9.0", note = "use `Id` and its marker types")]
pub type ChannelId = Id<ChannelMarker>;
#[deprecated(since = "0.9.0", note = "use `Id` and its marker types")]
pub type CommandId = Id<CommandMarker>;
#[deprecated(since = "0.9.0", note = "use `Id` and its marker types")]
pub type CommandVersionId = Id<CommandVersionMarker>;
#[deprecated(since = "0.9.0", note = "use `Id` and its marker types")]
pub type EmojiId = Id<EmojiMarker>;
#[deprecated(since = "0.9.0", note = "use `Id` and its marker types")]
pub type GenericId = Id<GenericMarker>;
#[deprecated(since = "0.9.0", note = "use `Id` and its marker types")]
pub type GuildId = Id<GuildMarker>;
#[deprecated(since = "0.9.0", note = "use `Id` and its marker types")]
pub type IntegrationId = Id<IntegrationMarker>;
#[deprecated(since = "0.9.0", note = "use `Id` and its marker types")]
pub type InteractionId = Id<InteractionMarker>;
#[deprecated(since = "0.9.0", note = "use `Id` and its marker types")]
pub type MessageId = Id<MessageMarker>;
#[deprecated(since = "0.9.0", note = "use `Id` and its marker types")]
pub type OauthSkuId = Id<OauthSkuMarker>;
#[deprecated(since = "0.9.0", note = "use `Id` and its marker types")]
pub type OauthTeamId = Id<OauthTeamMarker>;
#[deprecated(since = "0.9.0", note = "use `Id` and its marker types")]
pub type RoleId = Id<RoleMarker>;
#[deprecated(since = "0.9.0", note = "use `Id` and its marker types")]
pub type StageId = Id<StageMarker>;
#[deprecated(since = "0.9.0", note = "use `Id` and its marker types")]
pub type StickerBannerAssetId = Id<StickerBannerAssetMarker>;
#[deprecated(since = "0.9.0", note = "use `Id` and its marker types")]
pub type StickerId = Id<StickerMarker>;
#[deprecated(since = "0.9.0", note = "use `Id` and its marker types")]
pub type StickerPackId = Id<StickerPackMarker>;
#[deprecated(since = "0.9.0", note = "use `Id` and its marker types")]
pub type StickerPackSkuId = Id<StickerPackSkuMarker>;
#[deprecated(since = "0.9.0", note = "use `Id` and its marker types")]
pub type UserId = Id<UserMarker>;
#[deprecated(since = "0.9.0", note = "use `Id` and its marker types")]
pub type WebhookId = Id<WebhookMarker>;