use std::{borrow::Cow, fmt}; pub trait Tutor: fmt::Debug + Ord { fn get_name(&self) -> &str; fn get_id(&self) -> &str; fn get_blurb(&self) -> Cow; }