pub trait WithSystemInfo<'a>: 'a {
type Output: 'a;
// Required method
fn with_system_info(self, info: &SystemInfo) -> Self::Output;
}
Expand description
Values which can provide an output given the SystemInfo.
Required Associated Types§
Required Methods§
sourcefn with_system_info(self, info: &SystemInfo) -> Self::Output
fn with_system_info(self, info: &SystemInfo) -> Self::Output
Get the output derived from the given SystemInfo.