Skip to main content

RobonixPrimitiveArmEndPose

Trait RobonixPrimitiveArmEndPose 

Source
pub trait RobonixPrimitiveArmEndPose:
    Send
    + Sync
    + 'static {
    type EndPoseStream: Stream<Item = Result<Pose, Status>> + Send + 'static;

    // Required method
    fn end_pose<'life0, 'async_trait>(
        &'life0 self,
        request: Request<()>,
    ) -> Pin<Box<dyn Future<Output = Result<Response<Self::EndPoseStream>, 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 RobonixPrimitiveArmEndPoseServer.

Required Associated Types§

Source

type EndPoseStream: Stream<Item = Result<Pose, Status>> + Send + 'static

Server streaming response type for the EndPose method.

Required Methods§

Source

fn end_pose<'life0, 'async_trait>( &'life0 self, request: Request<()>, ) -> Pin<Box<dyn Future<Output = Result<Response<Self::EndPoseStream>, Status>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§