pub trait PostHook:
Send
+ Sync
+ 'static {
// Required methods
fn name(&self) -> &'static str;
fn call<'a>(
&'a self,
ctx: &'a HookContext,
) -> HookFuture<'a, Result<(), HookIssue>>;
}pub trait PostHook:
Send
+ Sync
+ 'static {
// Required methods
fn name(&self) -> &'static str;
fn call<'a>(
&'a self,
ctx: &'a HookContext,
) -> HookFuture<'a, Result<(), HookIssue>>;
}