mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-06 19:28:00 +00:00
5 lines
98 B
Rust
5 lines
98 B
Rust
pub trait Me {
|
|
fn me(&self) -> usize;
|
|
}
|
|
impl Me for usize { fn me(&self) -> usize { *self } }
|