WallGuard

Trait WallGuard 

Source
pub trait WallGuard:
    Send
    + Sync
    + 'static {
    type ControlChannelStream: Stream<Item = Result<WallGuardCommand, Status>> + Send + 'static;

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

Required Associated Types§

Source

type ControlChannelStream: Stream<Item = Result<WallGuardCommand, Status>> + Send + 'static

Server streaming response type for the ControlChannel method.

Required Methods§

Source

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

Implementors§