pub struct AssignmentOverrideParams {
pub student_ids: Option<Vec<u64>>,
pub group_id: Option<u64>,
pub course_section_id: Option<u64>,
pub title: Option<String>,
pub due_at: Option<DateTime<Utc>>,
pub unlock_at: Option<DateTime<Utc>>,
pub lock_at: Option<DateTime<Utc>>,
}Expand description
Parameters for creating an assignment override.
Fields§
§student_ids: Option<Vec<u64>>§group_id: Option<u64>§course_section_id: Option<u64>§title: Option<String>§due_at: Option<DateTime<Utc>>§unlock_at: Option<DateTime<Utc>>§lock_at: Option<DateTime<Utc>>Trait Implementations§
Source§impl Clone for AssignmentOverrideParams
impl Clone for AssignmentOverrideParams
Source§fn clone(&self) -> AssignmentOverrideParams
fn clone(&self) -> AssignmentOverrideParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AssignmentOverrideParams
impl Debug for AssignmentOverrideParams
Source§impl Default for AssignmentOverrideParams
impl Default for AssignmentOverrideParams
Source§fn default() -> AssignmentOverrideParams
fn default() -> AssignmentOverrideParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AssignmentOverrideParams
impl RefUnwindSafe for AssignmentOverrideParams
impl Send for AssignmentOverrideParams
impl Sync for AssignmentOverrideParams
impl Unpin for AssignmentOverrideParams
impl UnsafeUnpin for AssignmentOverrideParams
impl UnwindSafe for AssignmentOverrideParams
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