pub trait Inner<T> {
type Key: PathComponentKind;
// Required method
fn validate_inner<F>(&self, f: F)
where F: FnMut(&T, &Self::Key);
}Required Associated Types§
type Key: PathComponentKind
Required Methods§
fn validate_inner<F>(&self, f: F)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.