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