pub struct PlannedNode {
pub planner_key: String,
pub title: String,
pub description: Option<String>,
pub plan: Vec<String>,
pub tags: Vec<String>,
pub scope: Vec<String>,
pub depends_on_keys: Vec<String>,
pub children: Vec<PlannedNode>,
/* private fields */
}Fields§
§planner_key: String§title: String§description: Option<String>§plan: Vec<String>§scope: Vec<String>§depends_on_keys: Vec<String>§children: Vec<PlannedNode>Trait Implementations§
Source§impl Clone for PlannedNode
impl Clone for PlannedNode
Source§fn clone(&self) -> PlannedNode
fn clone(&self) -> PlannedNode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PlannedNode
impl Debug for PlannedNode
Auto Trait Implementations§
impl Freeze for PlannedNode
impl RefUnwindSafe for PlannedNode
impl Send for PlannedNode
impl Sync for PlannedNode
impl Unpin for PlannedNode
impl UnsafeUnpin for PlannedNode
impl UnwindSafe for PlannedNode
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