pub struct DepNodeJson {
pub id: String,
pub title: String,
pub status: String,
pub priority: Priority,
pub children: Vec<DepNodeJson>,
pub cycle: bool,
pub seen: bool,
}Fields§
§id: String§title: String§status: String§priority: Priority§children: Vec<DepNodeJson>§cycle: bool§seen: boolImplementations§
Source§impl DepNodeJson
impl DepNodeJson
pub fn from_dep_node(node: &DepNode<'_>) -> Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DepNodeJson
impl RefUnwindSafe for DepNodeJson
impl Send for DepNodeJson
impl Sync for DepNodeJson
impl Unpin for DepNodeJson
impl UnsafeUnpin for DepNodeJson
impl UnwindSafe for DepNodeJson
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