Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/bedroombuilds/python2rust
/ Person
Interface
Person
0b_traits/rust/supertraits.rs:1–5 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
trait Person {
2
fn name(&self) -> String {
3
String::from(
"Unnamed"
)
4
}
5
}
6
7
trait Student: Person {
8
fn university(&self) -> String;
Callers
nothing calls this directly
Implementers
1
supertraits.rs
0b_traits/rust/supertraits.rs
Calls
no outgoing calls
Tested by
no test coverage detected