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§

source

fn get(self) -> Self::Output

Get the value using the current system info.

Object Safety§

This trait is not object safe.

Implementors§