solana-core 4.0.0-beta.3

Blockchain, Rebuilt for Scale
Documentation
1
2
3
4
5
pub trait RequestResponse {
    type Response: ?Sized;
    fn num_expected_responses(&self) -> u32;
    fn verify_response(&self, response: &Self::Response) -> bool;
}