activitystreams_types/activity/
kind.rs1use activitystreams_derive::UnitString;
23
24#[derive(Clone, Debug, Default, UnitString)]
25#[activitystreams(Accept)]
26pub struct AcceptType;
27
28#[derive(Clone, Debug, Default, UnitString)]
29#[activitystreams(Add)]
30pub struct AddType;
31
32#[derive(Clone, Debug, Default, UnitString)]
33#[activitystreams(Move)]
34pub struct MoveType;
35
36#[derive(Clone, Debug, Default, UnitString)]
37#[activitystreams(Announce)]
38pub struct AnnounceType;
39
40#[derive(Clone, Debug, Default, UnitString)]
41#[activitystreams(Arrive)]
42pub struct ArriveType;
43
44#[derive(Clone, Debug, Default, UnitString)]
45#[activitystreams(Block)]
46pub struct BlockType;
47
48#[derive(Clone, Debug, Default, UnitString)]
49#[activitystreams(Create)]
50pub struct CreateType;
51
52#[derive(Clone, Debug, Default, UnitString)]
53#[activitystreams(Delete)]
54pub struct DeleteType;
55
56#[derive(Clone, Debug, Default, UnitString)]
57#[activitystreams(Dislike)]
58pub struct DislikeType;
59
60#[derive(Clone, Debug, Default, UnitString)]
61#[activitystreams(Flag)]
62pub struct FlagType;
63
64#[derive(Clone, Debug, Default, UnitString)]
65#[activitystreams(Follow)]
66pub struct FollowType;
67
68#[derive(Clone, Debug, Default, UnitString)]
69#[activitystreams(Ignore)]
70pub struct IgnoreType;
71
72#[derive(Clone, Debug, Default, UnitString)]
73#[activitystreams(Invite)]
74pub struct InviteType;
75
76#[derive(Clone, Debug, Default, UnitString)]
77#[activitystreams(Join)]
78pub struct JoinType;
79
80#[derive(Clone, Debug, Default, UnitString)]
81#[activitystreams(Leave)]
82pub struct LeaveType;
83
84#[derive(Clone, Debug, Default, UnitString)]
85#[activitystreams(Like)]
86pub struct LikeType;
87
88#[derive(Clone, Debug, Default, UnitString)]
89#[activitystreams(Listen)]
90pub struct ListenType;
91
92#[derive(Clone, Debug, Default, UnitString)]
93#[activitystreams(Offer)]
94pub struct OfferType;
95
96#[derive(Clone, Debug, Default, UnitString)]
97#[activitystreams(Question)]
98pub struct QuestionType;
99
100#[derive(Clone, Debug, Default, UnitString)]
101#[activitystreams(Real)]
102pub struct ReadType;
103
104#[derive(Clone, Debug, Default, UnitString)]
105#[activitystreams(Reject)]
106pub struct RejectType;
107
108#[derive(Clone, Debug, Default, UnitString)]
109#[activitystreams(Remove)]
110pub struct RemoveType;
111
112#[derive(Clone, Debug, Default, UnitString)]
113#[activitystreams(TentativeAccept)]
114pub struct TentativeAcceptType;
115
116#[derive(Clone, Debug, Default, UnitString)]
117#[activitystreams(TentativeReject)]
118pub struct TentativeRejectType;
119
120#[derive(Clone, Debug, Default, UnitString)]
121#[activitystreams(Travel)]
122pub struct TravelType;
123
124#[derive(Clone, Debug, Default, UnitString)]
125#[activitystreams(Undo)]
126pub struct UndoType;
127
128#[derive(Clone, Debug, Default, UnitString)]
129#[activitystreams(Update)]
130pub struct UpdateType;
131
132#[derive(Clone, Debug, Default, UnitString)]
133#[activitystreams(View)]
134pub struct ViewType;