MCPcopy Create free account
hub / github.com/algoscienceacademy/RustUI / Todo

Class Todo

examples/todo_app.rs:5–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3
4#[derive(Clone, Default)]
5struct Todo {
6 text: String,
7 completed: bool,
8}
9
10pub struct TodoApp {
11 todos: Arc<Mutex<Vec<Todo>>>,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected