trpl-zh-cn/listings/ch18-oop/listing-18-03/src/lib.rs
2024-10-20 23:44:05 +08:00

4 lines
39 B
Rust

pub trait Draw {
fn draw(&self);
}