You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In quiz3 solution, I think it is incomplete, since ideally we shouldn't even allow to create a ReportCard with the grade attribute having value of type other than those that implement the Display trait, so in my opinion in the complete solution we should also put a Trait Bound in the definition of the struct ReportCard and modify it to struct ReportCard<T: Display>