Struct ddtri::BeaconDistances
source · pub struct BeaconDistances<F> {
pub d0to1: F,
pub d0to2: F,
pub d1to2: F,
}Expand description
The distances between the beacons.
d0to1 is the distance between beacon 0 and beacon 1.
d0to2 is the distance between beacon 0 and beacon 2.
d1to2 is the distance between beacon 1 and beacon 2.
Fields§
§d0to1: F§d0to2: F§d1to2: FAuto Trait Implementations§
impl<F> Freeze for BeaconDistances<F>where
F: Freeze,
impl<F> RefUnwindSafe for BeaconDistances<F>where
F: RefUnwindSafe,
impl<F> Send for BeaconDistances<F>where
F: Send,
impl<F> Sync for BeaconDistances<F>where
F: Sync,
impl<F> Unpin for BeaconDistances<F>where
F: Unpin,
impl<F> UnwindSafe for BeaconDistances<F>where
F: UnwindSafe,
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