pub struct Task {Show 14 fields
pub id: String,
pub task_type: String,
pub phid: String,
pub name: String,
pub description: String,
pub author_phid: String,
pub assigned_phid: Option<String>,
pub status: String,
pub priority: String,
pub point: Option<u64>,
pub project_phids: Vec<String>,
pub board: Option<Board>,
pub created_at: u64,
pub updated_at: u64,
}
Fields§
§id: String
§task_type: String
§phid: String
§name: String
§description: String
§assigned_phid: Option<String>
§status: String
§priority: String
§point: Option<u64>
§project_phids: Vec<String>
§board: Option<Board>
§created_at: u64
§updated_at: u64
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Task
impl<'de> Deserialize<'de> for Task
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 Task
impl RefUnwindSafe for Task
impl Send for Task
impl Sync for Task
impl Unpin for Task
impl UnwindSafe for Task
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