pub struct LRUD {
pub left: Option<f64>,
pub right: Option<f64>,
pub up: Option<f64>,
pub down: Option<f64>,
}
Expand description
Passage dimension measurements
LRUDs (Left, Right, Up, Down) are measurements taken from a station to the walls of a cave passage. The measurements are given in centimeters from the station to the wall and can be used to determine the volume of a passage.
Fields§
§left: Option<f64>
§right: Option<f64>
§up: Option<f64>
§down: Option<f64>
Implementations§
Trait Implementations§
impl Copy for LRUD
impl StructuralPartialEq for LRUD
Auto Trait Implementations§
impl Freeze for LRUD
impl RefUnwindSafe for LRUD
impl Send for LRUD
impl Sync for LRUD
impl Unpin for LRUD
impl UnwindSafe for LRUD
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