pub trait WithCurrentSystemInfo<'a>: WithSystemInfo<'a> + Sized {
// Provided method
fn get(self) -> Self::Output { ... }
}
Expand description
Allows impl WithSystemInfo
to use the current system info.
Provided Methods§
Object Safety§
This trait is not object safe.