pub trait P2m:
Send
+ Sync
+ 'static {
// Required methods
fn p2m_local_enroll<'life0, 'async_trait>(
&'life0 self,
request: Request<LocalCt>,
) -> Pin<Box<dyn Future<Output = Result<Response<Ack>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn p2m_remote_enroll<'life0, 'async_trait>(
&'life0 self,
request: Request<RemoteCt>,
) -> Pin<Box<dyn Future<Output = Result<Response<Ack>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn p2m_io_request<'life0, 'async_trait>(
&'life0 self,
request: Request<IoInfo>,
) -> Pin<Box<dyn Future<Output = Result<Response<Grant>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn p2m_io_report<'life0, 'async_trait>(
&'life0 self,
request: Request<IoResult>,
) -> Pin<Box<dyn Future<Output = Result<Response<Ack>, 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 P2mServer.
Required Methods§
Sourcefn p2m_local_enroll<'life0, 'async_trait>(
&'life0 self,
request: Request<LocalCt>,
) -> Pin<Box<dyn Future<Output = Result<Response<Ack>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn p2m_local_enroll<'life0, 'async_trait>(
&'life0 self,
request: Request<LocalCt>,
) -> Pin<Box<dyn Future<Output = Result<Response<Ack>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Process to Middleware operations
fn p2m_remote_enroll<'life0, 'async_trait>(
&'life0 self,
request: Request<RemoteCt>,
) -> Pin<Box<dyn Future<Output = Result<Response<Ack>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn p2m_io_request<'life0, 'async_trait>(
&'life0 self,
request: Request<IoInfo>,
) -> Pin<Box<dyn Future<Output = Result<Response<Grant>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn p2m_io_report<'life0, 'async_trait>(
&'life0 self,
request: Request<IoResult>,
) -> Pin<Box<dyn Future<Output = Result<Response<Ack>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Implementors§
impl<P2mApi> P2m for P2mHandler<P2mApi>where
P2mApi: Service<P2mRequest, Response = P2mResponse, Error = TraceabilityError> + Clone + Sync + Send + 'static,
P2mApi::Future: Send,
Implementation of the trace2e gRPC service protocol.
This implementation provides the server-side handlers for all gRPC endpoints defined in the trace2e protocol. It handles both P2M (process-to-middleware) and M2M (machine-to-machine) operations by delegating to the appropriate internal service handlers.