pub trait RobonixPrimitiveLidarLidar3d:
Send
+ Sync
+ 'static {
type Lidar3dStream: Stream<Item = Result<PointCloud2, Status>> + Send + 'static;
// Required method
fn lidar3d<'life0, 'async_trait>(
&'life0 self,
request: Request<()>,
) -> Pin<Box<dyn Future<Output = Result<Response<Self::Lidar3dStream>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}Expand description
Generated trait containing gRPC methods that should be implemented for use with RobonixPrimitiveLidarLidar3dServer.
Required Associated Types§
Sourcetype Lidar3dStream: Stream<Item = Result<PointCloud2, Status>> + Send + 'static
type Lidar3dStream: Stream<Item = Result<PointCloud2, Status>> + Send + 'static
Server streaming response type for the Lidar3d method.