pub struct Lidar {
pub target: StructuralTarget,
pub publish_rate_hz: f64,
pub output: LidarOutput,
pub min_range_m: Option<f64>,
pub max_range_m: Option<f64>,
pub horizontal_fov_rad: Option<f64>,
pub horizontal_resolution_rad: Option<f64>,
pub vertical_fov_rad: Option<f64>,
pub vertical_resolution_rad: Option<f64>,
}Fields§
§target: StructuralTarget§publish_rate_hz: f64§output: LidarOutput§min_range_m: Option<f64>§max_range_m: Option<f64>§horizontal_fov_rad: Option<f64>§horizontal_resolution_rad: Option<f64>§vertical_fov_rad: Option<f64>§vertical_resolution_rad: Option<f64>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Lidar
impl<'de> Deserialize<'de> for Lidar
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Lidar
Auto Trait Implementations§
impl Freeze for Lidar
impl RefUnwindSafe for Lidar
impl Send for Lidar
impl Sync for Lidar
impl Unpin for Lidar
impl UnsafeUnpin for Lidar
impl UnwindSafe for Lidar
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