Skip to content

Commit 9f7d3b9

Browse files
committed
Deploying to gh-pages from @ 5b6c6cd πŸš€
0 parents  commit 9f7d3b9

File tree

6,265 files changed

+1649351
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

6,265 files changed

+1649351
-0
lines changed

β€Ž404.html

+2,317
Large diffs are not rendered by default.

β€Žapi/cat-gateway/index.html

+2,359
Large diffs are not rendered by default.

β€Žapi/cat-gateway/openapi/index.html

+2,374
Large diffs are not rendered by default.

β€Žapi/cat-gateway/rust-docs/all.dot

+800
Large diffs are not rendered by default.

β€Žapi/cat-gateway/rust-docs/cat-gateway-api.json

+1,070
Large diffs are not rendered by default.

β€Žapi/cat-gateway/rust-docs/cat-gateway.cat-gateway.bin.modules.dot

+193
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,232 @@
1+
2+
crate cat_gateway
3+
β”œβ”€β”€ mod cli: pub(crate)
4+
β”‚ β”œβ”€β”€ enum Cli: pub(crate)
5+
β”‚ └── enum Error: pub(crate)
6+
β”œβ”€β”€ mod event_db: pub(crate)
7+
β”‚ β”œβ”€β”€ struct EventDB: pub(crate)
8+
β”‚ β”œβ”€β”€ mod config_table: pub(self)
9+
β”‚ β”œβ”€β”€ mod error: pub(crate)
10+
β”‚ β”‚ └── enum Error: pub(crate)
11+
β”‚ β”œβ”€β”€ mod queries: pub(crate)
12+
β”‚ β”‚ β”œβ”€β”€ trait EventDbQueries: pub(crate)
13+
β”‚ β”‚ β”œβ”€β”€ mod event: pub(crate)
14+
β”‚ β”‚ β”‚ β”œβ”€β”€ trait EventQueries: pub(crate)
15+
β”‚ β”‚ β”‚ β”œβ”€β”€ mod ballot: pub(crate)
16+
β”‚ β”‚ β”‚ β”‚ └── trait BallotQueries: pub(crate)
17+
β”‚ β”‚ β”‚ β”œβ”€β”€ mod objective: pub(crate)
18+
β”‚ β”‚ β”‚ β”‚ └── trait ObjectiveQueries: pub(crate)
19+
β”‚ β”‚ β”‚ β”œβ”€β”€ mod proposal: pub(crate)
20+
β”‚ β”‚ β”‚ β”‚ └── trait ProposalQueries: pub(crate)
21+
β”‚ β”‚ β”‚ └── mod review: pub(crate)
22+
β”‚ β”‚ β”‚ └── trait ReviewQueries: pub(crate)
23+
β”‚ β”‚ β”œβ”€β”€ mod registration: pub(crate)
24+
β”‚ β”‚ β”‚ └── trait RegistrationQueries: pub(crate)
25+
β”‚ β”‚ β”œβ”€β”€ mod search: pub(crate)
26+
β”‚ β”‚ β”‚ └── trait SearchQueries: pub(crate)
27+
β”‚ β”‚ └── mod vit_ss: pub(crate)
28+
β”‚ β”‚ └── mod fund: pub(crate)
29+
β”‚ β”‚ └── trait VitSSFundQueries: pub(crate)
30+
β”‚ β”œβ”€β”€ mod schema_check: pub(crate)
31+
β”‚ β”‚ └── trait SchemaVersion: pub(crate)
32+
β”‚ └── mod types: pub(crate)
33+
β”‚ β”œβ”€β”€ mod ballot: pub(crate)
34+
β”‚ β”‚ β”œβ”€β”€ struct Ballot: pub(crate)
35+
β”‚ β”‚ β”œβ”€β”€ struct BallotType: pub(crate)
36+
β”‚ β”‚ β”œβ”€β”€ struct GroupVotePlans: pub(crate)
37+
β”‚ β”‚ β”œβ”€β”€ struct ObjectiveBallots: pub(crate)
38+
β”‚ β”‚ β”œβ”€β”€ struct ObjectiveChoices: pub(crate)
39+
β”‚ β”‚ β”œβ”€β”€ struct ProposalBallot: pub(crate)
40+
β”‚ β”‚ └── struct VotePlan: pub(crate)
41+
β”‚ β”œβ”€β”€ mod event: pub(crate)
42+
β”‚ β”‚ β”œβ”€β”€ struct Event: pub(crate)
43+
β”‚ β”‚ β”œβ”€β”€ struct EventDetails: pub(crate)
44+
β”‚ β”‚ β”œβ”€β”€ struct EventGoal: pub(crate)
45+
β”‚ β”‚ β”œβ”€β”€ struct EventId: pub(crate)
46+
β”‚ β”‚ β”œβ”€β”€ struct EventRegistration: pub(crate)
47+
β”‚ β”‚ β”œβ”€β”€ struct EventSchedule: pub(crate)
48+
β”‚ β”‚ β”œβ”€β”€ struct EventSummary: pub(crate)
49+
β”‚ β”‚ β”œβ”€β”€ enum VotingPowerAlgorithm: pub(crate)
50+
β”‚ β”‚ └── struct VotingPowerSettings: pub(crate)
51+
β”‚ β”œβ”€β”€ mod objective: pub(crate)
52+
β”‚ β”‚ β”œβ”€β”€ struct Objective: pub(crate)
53+
β”‚ β”‚ β”œβ”€β”€ struct ObjectiveDetails: pub(crate)
54+
β”‚ β”‚ β”œβ”€β”€ struct ObjectiveId: pub(crate)
55+
β”‚ β”‚ β”œβ”€β”€ struct ObjectiveSummary: pub(crate)
56+
β”‚ β”‚ β”œβ”€β”€ struct ObjectiveType: pub(crate)
57+
β”‚ β”‚ β”œβ”€β”€ struct RewardDefinition: pub(crate)
58+
β”‚ β”‚ └── struct VoterGroup: pub(crate)
59+
β”‚ β”œβ”€β”€ mod proposal: pub(crate)
60+
β”‚ β”‚ β”œβ”€β”€ struct Proposal: pub(crate)
61+
β”‚ β”‚ β”œβ”€β”€ struct ProposalDetails: pub(crate)
62+
β”‚ β”‚ β”œβ”€β”€ struct ProposalId: pub(crate)
63+
β”‚ β”‚ β”œβ”€β”€ struct ProposalSummary: pub(crate)
64+
β”‚ β”‚ └── struct ProposerDetails: pub(crate)
65+
β”‚ β”œβ”€β”€ mod registration: pub(crate)
66+
β”‚ β”‚ β”œβ”€β”€ struct Delegation: pub(crate)
67+
β”‚ β”‚ β”œβ”€β”€ struct Delegator: pub(crate)
68+
β”‚ β”‚ β”œβ”€β”€ struct RewardAddress: pub(crate)
69+
β”‚ β”‚ β”œβ”€β”€ struct Voter: pub(crate)
70+
β”‚ β”‚ β”œβ”€β”€ struct VoterGroupId: pub(crate)
71+
β”‚ β”‚ └── struct VoterInfo: pub(crate)
72+
β”‚ β”œβ”€β”€ mod review: pub(crate)
73+
β”‚ β”‚ β”œβ”€β”€ struct AdvisorReview: pub(crate)
74+
β”‚ β”‚ β”œβ”€β”€ struct Rating: pub(crate)
75+
β”‚ β”‚ └── struct ReviewType: pub(crate)
76+
β”‚ β”œβ”€β”€ mod search: pub(crate)
77+
β”‚ β”‚ β”œβ”€β”€ enum SearchColumn: pub(crate)
78+
β”‚ β”‚ β”œβ”€β”€ struct SearchConstraint: pub(crate)
79+
β”‚ β”‚ β”œβ”€β”€ struct SearchOrderBy: pub(crate)
80+
β”‚ β”‚ β”œβ”€β”€ struct SearchQuery: pub(crate)
81+
β”‚ β”‚ β”œβ”€β”€ struct SearchResult: pub(crate)
82+
β”‚ β”‚ β”œβ”€β”€ enum SearchTable: pub(crate)
83+
β”‚ β”‚ └── enum ValueResults: pub(crate)
84+
β”‚ β”œβ”€β”€ mod vit_ss: pub(crate)
85+
β”‚ β”‚ β”œβ”€β”€ mod challenge: pub(crate)
86+
β”‚ β”‚ β”‚ β”œβ”€β”€ struct Challenge: pub(crate)
87+
β”‚ β”‚ β”‚ └── struct ChallengeHighlights: pub(crate)
88+
β”‚ β”‚ β”œβ”€β”€ mod fund: pub(crate)
89+
β”‚ β”‚ β”‚ β”œβ”€β”€ struct Fund: pub(crate)
90+
β”‚ β”‚ β”‚ β”œβ”€β”€ struct FundNextInfo: pub(crate)
91+
β”‚ β”‚ β”‚ β”œβ”€β”€ struct FundStageDates: pub(crate)
92+
β”‚ β”‚ β”‚ └── struct FundWithNext: pub(crate)
93+
β”‚ β”‚ β”œβ”€β”€ mod goal: pub(crate)
94+
β”‚ β”‚ β”‚ └── struct Goal: pub(crate)
95+
β”‚ β”‚ β”œβ”€β”€ mod group: pub(crate)
96+
β”‚ β”‚ β”‚ └── struct Group: pub(crate)
97+
β”‚ β”‚ └── mod vote_plan: pub(crate)
98+
β”‚ β”‚ └── struct Voteplan: pub(crate)
99+
β”‚ └── mod voting_status: pub(crate)
100+
β”‚ └── struct VotingStatus: pub(crate)
101+
β”œβ”€β”€ mod logger: pub(crate)
102+
β”‚ └── enum LogLevel: pub(crate)
103+
β”œβ”€β”€ mod service: pub(crate)
104+
β”‚ β”œβ”€β”€ enum Error: pub(crate)
105+
β”‚ β”œβ”€β”€ mod api: pub(self)
106+
β”‚ β”‚ β”œβ”€β”€ mod health: pub(self)
107+
β”‚ β”‚ β”‚ β”œβ”€β”€ struct HealthApi: pub(crate)
108+
β”‚ β”‚ β”‚ β”œβ”€β”€ mod live_get: pub(self)
109+
β”‚ β”‚ β”‚ β”‚ └── type AllResponses: pub(crate)
110+
β”‚ β”‚ β”‚ β”œβ”€β”€ mod ready_get: pub(self)
111+
β”‚ β”‚ β”‚ β”‚ └── type AllResponses: pub(crate)
112+
β”‚ β”‚ β”‚ └── mod started_get: pub(self)
113+
β”‚ β”‚ β”‚ └── type AllResponses: pub(crate)
114+
β”‚ β”‚ β”œβ”€β”€ mod registration: pub(self)
115+
β”‚ β”‚ β”‚ └── struct RegistrationApi: pub(crate)
116+
β”‚ β”‚ β”œβ”€β”€ mod test_endpoints: pub(self)
117+
β”‚ β”‚ β”‚ β”œβ”€β”€ struct TestApi: pub(crate)
118+
β”‚ β”‚ β”‚ β”œβ”€β”€ mod test_get: pub(self)
119+
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ type AllResponses: pub(crate)
120+
β”‚ β”‚ β”‚ β”‚ └── enum Animals: pub(crate)
121+
β”‚ β”‚ β”‚ └── mod test_post: pub(self)
122+
β”‚ β”‚ β”‚ └── type AllResponses: pub(crate)
123+
β”‚ β”‚ β”œβ”€β”€ mod v0: pub(self)
124+
β”‚ β”‚ β”‚ β”œβ”€β”€ struct V0Api: pub(crate)
125+
β”‚ β”‚ β”‚ β”œβ”€β”€ mod message_post: pub(self)
126+
β”‚ β”‚ β”‚ β”‚ └── type AllResponses: pub(crate)
127+
β”‚ β”‚ β”‚ └── mod plans_get: pub(self)
128+
β”‚ β”‚ β”‚ └── type AllResponses: pub(crate)
129+
β”‚ β”‚ └── mod v1: pub(self)
130+
β”‚ β”‚ β”œβ”€β”€ struct V1Api: pub(crate)
131+
β”‚ β”‚ β”œβ”€β”€ mod account_votes_get: pub(self)
132+
β”‚ β”‚ β”‚ └── type AllResponses: pub(crate)
133+
β”‚ β”‚ β”œβ”€β”€ mod fragments_post: pub(self)
134+
β”‚ β”‚ β”‚ └── type AllResponses: pub(crate)
135+
β”‚ β”‚ └── mod fragments_statuses: pub(self)
136+
β”‚ β”‚ β”œβ”€β”€ type AllResponses: pub(crate)
137+
β”‚ β”‚ └── struct FragmentIds: pub(crate)
138+
β”‚ β”œβ”€β”€ mod common: pub(self)
139+
β”‚ β”‚ β”œβ”€β”€ mod objects: pub(crate)
140+
β”‚ β”‚ β”‚ β”œβ”€β”€ mod account_votes: pub(crate)
141+
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ struct AccountId: pub(crate)
142+
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ struct AccountVote: pub(crate)
143+
β”‚ β”‚ β”‚ β”‚ └── struct VotePlanId: pub(crate)
144+
β”‚ β”‚ β”‚ β”œβ”€β”€ mod block: pub(crate)
145+
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ struct BlockDate: pub(crate)
146+
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ struct Epoch: pub(crate)
147+
β”‚ β”‚ β”‚ β”‚ └── struct Slot: pub(crate)
148+
β”‚ β”‚ β”‚ β”œβ”€β”€ mod delegate_public_key: pub(crate)
149+
β”‚ β”‚ β”‚ β”‚ └── struct DelegatePublicKey: pub(crate)
150+
β”‚ β”‚ β”‚ β”œβ”€β”€ mod event_id: pub(crate)
151+
β”‚ β”‚ β”‚ β”‚ └── struct EventId: pub(crate)
152+
β”‚ β”‚ β”‚ β”œβ”€β”€ mod fragment_status: pub(crate)
153+
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ enum FragmentStatus: pub(crate)
154+
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ struct StatusInABlock: pub(crate)
155+
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ struct StatusPending: pub(crate)
156+
β”‚ β”‚ β”‚ β”‚ └── struct StatusRejected: pub(crate)
157+
β”‚ β”‚ β”‚ β”œβ”€β”€ mod fragments_batch: pub(crate)
158+
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ struct FragmentDef: pub(crate)
159+
β”‚ β”‚ β”‚ β”‚ └── struct FragmentsBatch: pub(crate)
160+
β”‚ β”‚ β”‚ β”œβ”€β”€ mod fragments_processing_summary: pub(crate)
161+
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ struct FragmentId: pub(crate)
162+
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ struct FragmentsProcessingSummary: pub(crate)
163+
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ enum ReasonRejected: pub(crate)
164+
β”‚ β”‚ β”‚ β”‚ └── struct RejectedFragment: pub(crate)
165+
β”‚ β”‚ β”‚ β”œβ”€β”€ mod hash: pub(crate)
166+
β”‚ β”‚ β”‚ β”‚ └── struct Hash: pub(crate)
167+
β”‚ β”‚ β”‚ β”œβ”€β”€ mod stake_public_key: pub(crate)
168+
β”‚ β”‚ β”‚ β”‚ └── struct StakePublicKey: pub(crate)
169+
β”‚ β”‚ β”‚ β”œβ”€β”€ mod vote_plan: pub(crate)
170+
β”‚ β”‚ β”‚ β”‚ └── struct VotePlan: pub(crate)
171+
β”‚ β”‚ β”‚ β”œβ”€β”€ mod voter_group_id: pub(crate)
172+
β”‚ β”‚ β”‚ β”‚ └── enum VoterGroupId: pub(crate)
173+
β”‚ β”‚ β”‚ β”œβ”€β”€ mod voter_info: pub(crate)
174+
β”‚ β”‚ β”‚ β”‚ └── struct VoterInfo: pub(crate)
175+
β”‚ β”‚ β”‚ β”œβ”€β”€ mod voter_registration: pub(crate)
176+
β”‚ β”‚ β”‚ β”‚ └── struct VoterRegistration: pub(crate)
177+
β”‚ β”‚ β”‚ └── mod voting_public_key: pub(crate)
178+
β”‚ β”‚ β”‚ └── struct VotingPublicKey: pub(crate)
179+
β”‚ β”‚ β”œβ”€β”€ mod responses: pub(crate)
180+
β”‚ β”‚ β”‚ β”œβ”€β”€ mod resp_2xx: pub(crate)
181+
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ struct NoContent: pub(crate)
182+
β”‚ β”‚ β”‚ β”‚ └── struct OK: pub(crate)
183+
β”‚ β”‚ β”‚ β”œβ”€β”€ mod resp_4xx: pub(crate)
184+
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ struct ApiValidationError: pub(crate)
185+
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ struct BadRequest: pub(crate)
186+
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ struct Forbidden: pub(crate)
187+
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ struct MethodNotAllowed: pub(crate)
188+
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ struct NotAcceptable: pub(crate)
189+
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ struct NotFound: pub(crate)
190+
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ struct Unauthorized: pub(crate)
191+
β”‚ β”‚ β”‚ β”‚ └── struct ValidationError: pub(crate)
192+
β”‚ β”‚ β”‚ └── mod resp_5xx: pub(crate)
193+
β”‚ β”‚ β”‚ β”œβ”€β”€ struct ServerError: pub(crate)
194+
β”‚ β”‚ β”‚ β”œβ”€β”€ struct ServerErrorPayload: pub(self)
195+
β”‚ β”‚ β”‚ └── struct ServiceUnavailable: pub(crate)
196+
β”‚ β”‚ └── mod tags: pub(crate)
197+
β”‚ β”‚ └── enum ApiTags: pub(crate)
198+
β”‚ β”œβ”€β”€ mod docs: pub(self)
199+
β”‚ β”‚ β”œβ”€β”€ struct Files: pub(crate)
200+
β”‚ β”‚ └── mod stoplight_elements: pub(self)
201+
β”‚ β”œβ”€β”€ mod poem_service: pub(self)
202+
β”‚ β”‚ └── mod tests: pub(crate) #[cfg(test)]
203+
β”‚ └── mod utilities: pub(self)
204+
β”‚ β”œβ”€β”€ mod catch_panic: pub(crate)
205+
β”‚ β”‚ └── struct ServicePanicHandler: pub(crate)
206+
β”‚ └── mod middleware: pub(crate)
207+
β”‚ β”œβ”€β”€ mod schema_validation: pub(crate)
208+
β”‚ β”‚ β”œβ”€β”€ struct SchemaVersionValidation: pub(crate)
209+
β”‚ β”‚ └── struct SchemaVersionValidationImpl: pub(crate)
210+
β”‚ └── mod tracing_mw: pub(crate)
211+
β”‚ β”œβ”€β”€ struct CLIENT_REQUEST_COUNT: pub(self)
212+
β”‚ β”œβ”€β”€ struct HTTP_REQUEST_COUNT: pub(self)
213+
β”‚ β”œβ”€β”€ struct HTTP_REQ_CPU_TIME_MS: pub(self)
214+
β”‚ β”œβ”€β”€ struct HTTP_REQ_DURATION_MS: pub(self)
215+
β”‚ β”œβ”€β”€ struct PANIC_REQUEST_COUNT: pub(self)
216+
β”‚ β”œβ”€β”€ struct ResponseData: pub(self)
217+
β”‚ β”œβ”€β”€ struct Tracing: pub(crate)
218+
β”‚ └── struct TracingEndpoint: pub(crate)
219+
β”œβ”€β”€ mod settings: pub(crate)
220+
β”‚ β”œβ”€β”€ struct API_HOST_NAMES: pub(crate)
221+
β”‚ β”œβ”€β”€ struct API_URL_PREFIX: pub(crate)
222+
β”‚ β”œβ”€β”€ struct CLIENT_ID_KEY: pub(crate)
223+
β”‚ β”œβ”€β”€ struct DocsSettings: pub(crate)
224+
β”‚ β”œβ”€β”€ struct GITHUB_ISSUE_TEMPLATE: pub(crate)
225+
β”‚ β”œβ”€β”€ struct GITHUB_REPO_NAME: pub(crate)
226+
β”‚ β”œβ”€β”€ struct GITHUB_REPO_OWNER: pub(crate)
227+
β”‚ β”œβ”€β”€ struct ServiceSettings: pub(crate)
228+
β”‚ β”œβ”€β”€ struct StringEnvVar: pub(crate)
229+
β”‚ └── mod tests: pub(self) #[cfg(test)]
230+
└── mod state: pub(crate)
231+
β”œβ”€β”€ enum SchemaVersionStatus: pub(crate)
232+
└── struct State: pub(crate)

β€Žapi/cat-gateway/rust-docs/cat_gateway/all.html

+2
Large diffs are not rendered by default.

0 commit comments

Comments
Β (0)