pub trait Watch { type Item; fn inner(&self) -> Option<Self::Item>; } struct A { data: i32, } impl Watch for A { type Item = i32; ...
確定! 回上一頁