MCPcopy Create free account
hub / github.com/Rust-Web-Development/code / Question

Class Question

ch_02/src/main.rs:7–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5
6#[derive(Debug)]
7struct Question {
8 id: QuestionId,
9 title: String,
10 content: String,
11 tags: Option<Vec<String>>,
12}
13
14#[derive(Debug)]
15struct QuestionId(String);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected