pub trait PolicyFnT: Fn(&str, &Path) -> Result<()> + Send + Sync { }

Trait Implementations§

source§

impl Debug for dyn PolicyFnT

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Implementors§

source§

impl<F> PolicyFnT for F
where F: Fn(&str, &Path) -> Result<()> + Send + Sync,