pub enum Direction {
North,
South,
East,
West,
}Expand description
Cardinal direction on the toroidal ISL grid.
Variants§
North
Toward lower satellite index (intra-plane).
South
Toward higher satellite index (intra-plane).
East
Toward higher orbital plane index (cross-plane).
West
Toward lower orbital plane index (cross-plane).
Implementations§
Trait Implementations§
impl Copy for Direction
impl Eq for Direction
impl StructuralPartialEq for Direction
Auto Trait Implementations§
impl Freeze for Direction
impl RefUnwindSafe for Direction
impl Send for Direction
impl Sync for Direction
impl Unpin for Direction
impl UnsafeUnpin for Direction
impl UnwindSafe for Direction
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