pub struct HancockDataRow {
pub zen: f32,
pub az: f32,
pub x: f32,
pub y: f32,
pub z: f32,
pub shot_n: u32,
pub n_hits: u8,
pub r: RefCell<Vec<f32>>,
pub refl: RefCell<Vec<f32>>,
}
Fields§
§zen: f32
§az: f32
§x: f32
§y: f32
§z: f32
§shot_n: u32
§n_hits: u8
§r: RefCell<Vec<f32>>
§refl: RefCell<Vec<f32>>
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for HancockDataRow
impl !RefUnwindSafe for HancockDataRow
impl Send for HancockDataRow
impl !Sync for HancockDataRow
impl Unpin for HancockDataRow
impl UnwindSafe for HancockDataRow
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