pub trait Convert<T> {
    // Required method
    fn convert(self) -> T;
}

Required Methods§

source

fn convert(self) -> T

Implementations on Foreign Types§

source§

impl Convert<GradingProgress> for GradingProgress

source§

impl Convert<CourseInstance> for CourseInstanceWithCourseInfo

source§

impl Convert<ExerciseTask> for CourseMaterialExerciseTask

source§

impl<T, U> Convert<Vec<T>> for Vec<U>
where U: Convert<T>,

source§

fn convert(self) -> Vec<T>

Implementors§