pub struct PulseTask {
pub id: String,
pub title: String,
pub status: String,
pub priority: String,
pub assignee_name: Option<String>,
pub reviewer_name: Option<String>,
pub tags: Vec<String>,
pub updated_at: String,
}Fields§
§id: String§title: String§status: String§priority: String§assignee_name: Option<String>§reviewer_name: Option<String>§updated_at: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for PulseTask
impl RefUnwindSafe for PulseTask
impl Send for PulseTask
impl Sync for PulseTask
impl Unpin for PulseTask
impl UnsafeUnpin for PulseTask
impl UnwindSafe for PulseTask
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