pub trait GuppyConfigure: Send + Sync + 'static {
    // Required methods
    fn set_led<'life0, 'async_trait>(
        &'life0 self,
        request: Request<SetLedRequest>
    ) -> Pin<Box<dyn Future<Output = Result<Response<SetLedResponse>, Status>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn set_configuration<'life0, 'async_trait>(
        &'life0 self,
        request: Request<ArmControlSettings>
    ) -> Pin<Box<dyn Future<Output = Result<Response<ConfigurationResponse>, Status>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn get_default_configuration<'life0, 'async_trait>(
        &'life0 self,
        request: Request<ConfigurationRequest>
    ) -> Pin<Box<dyn Future<Output = Result<Response<ArmControlSettings>, Status>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn get_arm_configuration<'life0, 'async_trait>(
        &'life0 self,
        request: Request<ConfigurationRequest>
    ) -> Pin<Box<dyn Future<Output = Result<Response<ArmControlSettings>, 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 GuppyConfigureServer.