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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
//! Resources for managing Discord HTTP client and Rich Presence functionality.
//!
//! This module provides two main resources:
//! - `DiscordHttpResource`: For handling Discord HTTP client operations
//! - `DiscordRichPresenceRes`: For managing Discord Rich Presence integration
use *;
use Arc;
/// A Bevy resource that provides access to the Discord HTTP client.
///
/// This resource is automatically inserted into the Bevy app when using
/// `DiscordHttpPlugin`. It wraps Serenity's `Http` client in an `Arc`
/// for safe concurrent access.
///
/// # Examples
///
/// ```rust,no_run
/// use bevy_discord::res::DiscordHttpResource;
/// use std::sync::Arc;
/// use serenity::all::Http;
///
/// let http = Arc::new(Http::new("token"));
/// let resource = DiscordHttpResource::new(http);
///
/// // Get a cloned Arc reference
/// let client = resource.client();
///
/// // Get a reference to the client
/// let client_ref = resource.client_ref();
/// ```
/// A global resource for managing Discord Rich Presence functionality.
///
/// This resource maintains the bot's Rich Presence state and provides access
/// to the Discord SDK client for updating presence information.
///
/// # Examples
///
/// ```rust,no_run
/// use bevy_discord::res::DiscordRichPresenceRes;
/// use std::sync::Arc;
/// use discord_sdk::Discord;
///
/// let discord = Arc::new(Discord::new(/* ... */));
/// let resource = DiscordRichPresenceRes::new(discord);
///
/// // Get a cloned Arc reference
/// let rp = resource.get_rp();
///
/// // Get a reference to the Discord client
/// let rp_ref = resource.get_rp_ref();
/// ```