Trait CommonParamImpl

Source
pub trait CommonParamImpl {
    // Required methods
    fn line(&self) -> u32;
    fn path(&self) -> PathBuf;
    fn set_line(&mut self, line: u32) -> &mut Self;
    fn set_path(&mut self, path: PathBuf) -> &mut Self;
}

Required Methods§

Source

fn line(&self) -> u32

Source

fn path(&self) -> PathBuf

Source

fn set_line(&mut self, line: u32) -> &mut Self

Source

fn set_path(&mut self, path: PathBuf) -> &mut Self

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.

Implementors§