We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
bsky-sdk
1 parent 4d17bba commit f74975dCopy full SHA for f74975d
bsky-sdk/src/agent.rs
@@ -42,6 +42,7 @@ pub struct BskyAgent<T = ReqwestClient, S = MemoryMapStore<(), AtpSession>>
42
where
43
T: XrpcClient + Send + Sync,
44
S: MapStore<(), AtpSession> + Send + Sync,
45
+ S::Error: Send + Sync + 'static,
46
{
47
inner: Arc<AtpAgent<S, T>>,
48
}
@@ -68,6 +69,7 @@ impl<T, S> BskyAgent<T, S>
68
69
70
71
72
73
74
/// Get the agent's current state as a [`Config`].
75
pub async fn to_config(&self) -> Config {
@@ -250,6 +252,7 @@ impl<T, S> Deref for BskyAgent<T, S>
250
252
251
253
254
255
256
257
type Target = AtpAgent<S, T>;
258
bsky-sdk/src/agent/builder.rs
@@ -34,6 +34,7 @@ impl<T, S> BskyAtpAgentBuilder<T, S>
34
35
36
37
38
39
/// Set the configuration for the agent.
40
pub fn config(mut self, config: Config) -> Self {
bsky-sdk/src/record.rs
@@ -18,6 +18,7 @@ pub trait Record<T, S>
18
19
20
21
22
23
fn list(
24
agent: &BskyAgent<T, S>,
@@ -47,6 +48,7 @@ macro_rules! record_impl {
49
50
51
52
53
async fn list(
54
@@ -164,6 +166,7 @@ macro_rules! record_impl {
164
166
165
167
168
169
170
171
172
bsky-sdk/src/record/agent.rs
@@ -12,6 +12,7 @@ impl<T, S> BskyAgent<T, S>
12
13
14
15
16
17
/// Create a record with various types of data.
/// For example, the Record families defined in [`KnownRecord`](atrium_api::record::KnownRecord) are supported.
0 commit comments