1 2 3 4 5
use crate::tutors::abstractions::tutor::Tutor; pub trait TutorRepo { fn load(&self) -> impl IntoIterator<Item = impl Tutor>; }