pub struct CourseDataExercise {
pub id: u32,
pub available_points: Vec<ExercisePoint>,
pub name: String,
pub publish_time: Option<String>,
pub solution_visible_after: Option<String>,
pub deadline: Option<String>,
pub disabled: bool,
}Expand description
get /api/v8/org/{organization_slug}/courses/{course_name}/exercises
Fields§
§id: u32§available_points: Vec<ExercisePoint>§name: String§publish_time: Option<String>§solution_visible_after: Option<String>§deadline: Option<String>§disabled: boolTrait Implementations§
Source§impl Debug for CourseDataExercise
impl Debug for CourseDataExercise
Source§impl<'de> Deserialize<'de> for CourseDataExercise
impl<'de> Deserialize<'de> for CourseDataExercise
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CourseDataExercise
impl RefUnwindSafe for CourseDataExercise
impl Send for CourseDataExercise
impl Sync for CourseDataExercise
impl Unpin for CourseDataExercise
impl UnwindSafe for CourseDataExercise
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more