1 2 3 4 5 6 7
use crate::runtime::protocol::ProtocolError; /// Outcome of a protocol hook that can be interrupted by shutdown signals. pub(crate) enum HookDecision<T> { Finished(Result<T, ProtocolError>), Cancelled, }