pub struct NCPath {
pub name: String,
pub dir: Vec<bool>,
pub nodes: Vec<u32>,
pub overlap: Vec<String>,
}
Expand description
Path features:
- names
- Directions of the nodes
- Node names
Fields§
§name: String
§dir: Vec<bool>
§nodes: Vec<u32>
§overlap: Vec<String>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NCPath
impl RefUnwindSafe for NCPath
impl Send for NCPath
impl Sync for NCPath
impl Unpin for NCPath
impl UnwindSafe for NCPath
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