pub struct Leg {
pub path: Vec<Point>,
pub outgoing: Option<Direction>,
pub resolution: Resolution,
}Expand description
One leg as routed: its points, the direction it arrives in, and whether the lattice held a path for it.
Fields§
§path: Vec<Point>§outgoing: Option<Direction>§resolution: ResolutionTrait Implementations§
Auto Trait Implementations§
impl Freeze for Leg
impl RefUnwindSafe for Leg
impl Send for Leg
impl Sync for Leg
impl Unpin for Leg
impl UnsafeUnpin for Leg
impl UnwindSafe for Leg
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