pub trait PIDInfo {
    // Required method
    fn flavor() -> PidInfoFlavor;
}
Expand description

The PIDInfo trait is needed for polymorphism on pidinfo types, also abstracting flavor in order to provide type-guaranteed flavor correctness

Required Methods§

source

fn flavor() -> PidInfoFlavor

Return the PidInfoFlavor of the implementing struct

Implementors§