trpl-zh-cn/listings/ch18-oop/listing-18-03/src/lib.rs

4 lines
39 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
pub trait Draw {
fn draw(&self);
}