Files
2026-01-07 14:23:30 +01:00

9 lines
135 B
Rust

pub trait MyTrait {
/// docs for my_trait_method
fn my_trait_method() {}
}
pub struct MyStruct;
impl MyTrait for MyStruct {}