pub struct ScheduledTaskEntry {
pub id: String,
pub title: String,
pub status: String,
pub priority: String,
pub scheduled_at: String,
pub assignee_id: Option<String>,
}Expand description
Response for schedule endpoint — task with its scheduled_at
Fields§
§id: String§title: String§status: String§priority: String§scheduled_at: String§assignee_id: Option<String>Trait Implementations§
Source§impl Debug for ScheduledTaskEntry
impl Debug for ScheduledTaskEntry
Auto Trait Implementations§
impl Freeze for ScheduledTaskEntry
impl RefUnwindSafe for ScheduledTaskEntry
impl Send for ScheduledTaskEntry
impl Sync for ScheduledTaskEntry
impl Unpin for ScheduledTaskEntry
impl UnsafeUnpin for ScheduledTaskEntry
impl UnwindSafe for ScheduledTaskEntry
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