pub trait PathType: AsRef<Path> + MaybeSend { }
PathType is an alias for AsRef<Path> + Send
AsRef<Path> + Send
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".