pub struct BeamData {
pub azimuth_center: f32,
pub azimuth_sweep: f32,
pub elevation_center: f32,
pub elevation_sweep: f32,
pub sweep_sync: f32,
}Expand description
6.2.11 Beam Data record
Fields§
§azimuth_center: f32§azimuth_sweep: f32§elevation_center: f32§elevation_sweep: f32§sweep_sync: f32Implementations§
Source§impl BeamData
impl BeamData
pub fn new() -> Self
pub fn with_azimuth_center(self, azimuth_center: f32) -> Self
pub fn with_azimuth_sweep(self, azimuth_sweep: f32) -> Self
pub fn with_elevation_center(self, elevation_center: f32) -> Self
pub fn with_elevation_sweep(self, elevation_sweep: f32) -> Self
pub fn with_sweep_sync(self, sweep_sync: f32) -> Self
Trait Implementations§
impl Copy for BeamData
impl StructuralPartialEq for BeamData
Auto Trait Implementations§
impl Freeze for BeamData
impl RefUnwindSafe for BeamData
impl Send for BeamData
impl Sync for BeamData
impl Unpin for BeamData
impl UnwindSafe for BeamData
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