Skip to main content

TypedQueryBoundary

Trait TypedQueryBoundary 

Source
pub trait TypedQueryBoundary {
    type Request: Send + Sync;
    type Response: Send + Sync;

    // Required method
    fn execute(
        &self,
        request: &Self::Request,
        context: &QueryContext,
    ) -> IntegrationResult<Self::Response>;
}

Required Associated Types§

Required Methods§

Source

fn execute( &self, request: &Self::Request, context: &QueryContext, ) -> IntegrationResult<Self::Response>

Implementors§