pub struct PlannerNoteParams {
pub title: Option<String>,
pub details: Option<String>,
pub todo_date: Option<String>,
pub course_id: Option<u64>,
}Fields§
§title: Option<String>§details: Option<String>§todo_date: Option<String>§course_id: Option<u64>Trait Implementations§
Source§impl Clone for PlannerNoteParams
impl Clone for PlannerNoteParams
Source§fn clone(&self) -> PlannerNoteParams
fn clone(&self) -> PlannerNoteParams
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 PlannerNoteParams
impl Debug for PlannerNoteParams
Source§impl Default for PlannerNoteParams
impl Default for PlannerNoteParams
Source§fn default() -> PlannerNoteParams
fn default() -> PlannerNoteParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PlannerNoteParams
impl RefUnwindSafe for PlannerNoteParams
impl Send for PlannerNoteParams
impl Sync for PlannerNoteParams
impl Unpin for PlannerNoteParams
impl UnsafeUnpin for PlannerNoteParams
impl UnwindSafe for PlannerNoteParams
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