pub enum Hop {
Isl(Direction),
Ground,
Local,
}Expand description
Next-hop routing decision.
Variants§
Isl(Direction)
Forward on an ISL link.
Ground
Send to the ground station.
Local
Deliver to the local node.
Trait Implementations§
impl Copy for Hop
impl Eq for Hop
impl StructuralPartialEq for Hop
Auto Trait Implementations§
impl Freeze for Hop
impl RefUnwindSafe for Hop
impl Send for Hop
impl Sync for Hop
impl Unpin for Hop
impl UnsafeUnpin for Hop
impl UnwindSafe for Hop
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