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
// @generated - This file is generated by atrium-codegen. DO NOT EDIT.
//!Definitions for the `app.bsky.graph` namespace.
pub mod block;
pub mod defs;
pub mod follow;
pub mod get_actor_starter_packs;
pub mod get_blocks;
pub mod get_followers;
pub mod get_follows;
pub mod get_known_followers;
pub mod get_list;
pub mod get_list_blocks;
pub mod get_list_mutes;
pub mod get_lists;
pub mod get_mutes;
pub mod get_relationships;
pub mod get_starter_pack;
pub mod get_starter_packs;
pub mod get_suggested_follows_by_actor;
pub mod list;
pub mod listblock;
pub mod listitem;
pub mod mute_actor;
pub mod mute_actor_list;
pub mod mute_thread;
pub mod starterpack;
pub mod unmute_actor;
pub mod unmute_actor_list;
pub mod unmute_thread;
#[derive(Debug)]
pub struct Block;
impl crate::types::Collection for Block {
    const NSID: &'static str = "app.bsky.graph.block";
    type Record = block::Record;
}
#[derive(Debug)]
pub struct Follow;
impl crate::types::Collection for Follow {
    const NSID: &'static str = "app.bsky.graph.follow";
    type Record = follow::Record;
}
#[derive(Debug)]
pub struct List;
impl crate::types::Collection for List {
    const NSID: &'static str = "app.bsky.graph.list";
    type Record = list::Record;
}
#[derive(Debug)]
pub struct Listblock;
impl crate::types::Collection for Listblock {
    const NSID: &'static str = "app.bsky.graph.listblock";
    type Record = listblock::Record;
}
#[derive(Debug)]
pub struct Listitem;
impl crate::types::Collection for Listitem {
    const NSID: &'static str = "app.bsky.graph.listitem";
    type Record = listitem::Record;
}
#[derive(Debug)]
pub struct Starterpack;
impl crate::types::Collection for Starterpack {
    const NSID: &'static str = "app.bsky.graph.starterpack";
    type Record = starterpack::Record;
}