pub struct DistanceMinimizing<const N: usize> { /* private fields */ }Expand description
Physics-aware routing that considers orbital mechanics to minimize ISL distance. Prefers cross-plane hops when the satellite is near the poles (where planes converge).
Implementations§
Source§impl<const N: usize> DistanceMinimizing<N>
impl<const N: usize> DistanceMinimizing<N>
Sourcepub fn new(shell: Shell, gateway_table: GatewayTable<N>) -> Self
pub fn new(shell: Shell, gateway_table: GatewayTable<N>) -> Self
Creates a new distance-minimizing router.
Trait Implementations§
Auto Trait Implementations§
impl<const N: usize> Freeze for DistanceMinimizing<N>
impl<const N: usize> RefUnwindSafe for DistanceMinimizing<N>
impl<const N: usize> Send for DistanceMinimizing<N>
impl<const N: usize> Sync for DistanceMinimizing<N>
impl<const N: usize> Unpin for DistanceMinimizing<N>
impl<const N: usize> UnsafeUnpin for DistanceMinimizing<N>
impl<const N: usize> UnwindSafe for DistanceMinimizing<N>
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