pub trait Current: FromRead {
const PATH: &'static str;
// Provided method
fn current() -> ProcResult<Self> { ... }
}Expand description
Allows associating a specific file to parse.
Required Associated Constants§
Provided Methods§
Sourcefn current() -> ProcResult<Self>
fn current() -> ProcResult<Self>
Parse the current value using the system file.
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.