pub struct TaskSpec {
pub title: String,
pub status: Option<NodeStatus>,
pub tags: Vec<String>,
pub deps: Vec<String>,
}Expand description
Task specification for add_feature().
Fields§
§title: String§status: Option<NodeStatus>§deps: Vec<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for TaskSpec
impl RefUnwindSafe for TaskSpec
impl Send for TaskSpec
impl Sync for TaskSpec
impl Unpin for TaskSpec
impl UnsafeUnpin for TaskSpec
impl UnwindSafe for TaskSpec
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