1 2 3 4 5 6 7 8 9 10 11
use crate::fruits::Fruits; pub struct Apple { pub name: String, } impl Fruits for Apple { fn name(&self) -> String { return self.name.to_string(); } }