pub struct GraphTask {
pub id: String,
pub title: String,
pub list: Option<String>,
pub due: Option<String>,
pub completed: bool,
}Expand description
A Microsoft To Do task.
Fields§
§id: String§title: String§list: Option<String>§due: Option<String>§completed: boolTrait Implementations§
impl StructuralPartialEq for GraphTask
Auto Trait Implementations§
impl Freeze for GraphTask
impl RefUnwindSafe for GraphTask
impl Send for GraphTask
impl Sync for GraphTask
impl Unpin for GraphTask
impl UnsafeUnpin for GraphTask
impl UnwindSafe for GraphTask
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