use std::ops::Deref; struct Mp3 { audio: Vec<u8>, artist: Option<String>, ... If we hadn't implemented the Deref trait for Mp3 , Rust wouldn't compile the ...
確定! 回上一頁