something like that? trait Callback { fn callback(&self) { println!("default callback implementation") } } and Parent and Child structs struct Parent {} im...