pub struct UpdateAssignmentParams {
pub name: Option<String>,
pub description: Option<String>,
pub due_at: Option<DateTime<Utc>>,
pub points_possible: Option<f64>,
pub published: Option<bool>,
}Fields§
§name: Option<String>§description: Option<String>§due_at: Option<DateTime<Utc>>§points_possible: Option<f64>§published: Option<bool>Trait Implementations§
Source§impl Debug for UpdateAssignmentParams
impl Debug for UpdateAssignmentParams
Source§impl Default for UpdateAssignmentParams
impl Default for UpdateAssignmentParams
Source§fn default() -> UpdateAssignmentParams
fn default() -> UpdateAssignmentParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateAssignmentParams
impl<'de> Deserialize<'de> for UpdateAssignmentParams
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 UpdateAssignmentParams
impl RefUnwindSafe for UpdateAssignmentParams
impl Send for UpdateAssignmentParams
impl Sync for UpdateAssignmentParams
impl Unpin for UpdateAssignmentParams
impl UnsafeUnpin for UpdateAssignmentParams
impl UnwindSafe for UpdateAssignmentParams
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