MCPcopy Create free account
hub / github.com/CodeSentryAI/lockbud / Foo

Class Foo

toys/inter/src/main.rs:3–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1use std::sync;
2
3struct Foo {
4 mu1: sync::Arc<sync::Mutex<i32>>,
5 rw1: sync::RwLock<i32>,
6 mu2: parking_lot::Mutex<i32>,
7 rw2: parking_lot::RwLock<i32>,
8 mu3: spin::Mutex<i32>,
9 rw3: spin::RwLock<i32>,
10}
11
12impl Foo {
13 fn new() -> Self {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected