kyoto_protocol 0.1.0

Protocol module for kyoto
Documentation
1
2
3
4
5
use crate::flow::flow_type::{ FlowType, RetFlowType };

pub trait FlowHandler {
    fn handle_flow(&mut self, flow: FlowType) -> crate::Result<RetFlowType>;
}