Trait arci::LaserScan2D

source ·
pub trait LaserScan2D: Send + Sync {
    // Required method
    fn current_scan(&self) -> Result<Scan2D, Error>;
}

Required Methods§

Implementations on Foreign Types§

source§

impl<T: LaserScan2D + ?Sized> LaserScan2D for Box<T>
where Box<T>: Send + Sync,

source§

impl<T: LaserScan2D + ?Sized> LaserScan2D for Arc<T>
where Arc<T>: Send + Sync,

Implementors§