pub trait VarEnumerator { // Required method fn get_all_vars<'a>( &'a self, ) -> Result<Box<dyn Iterator<Item = Variable> + 'a>>; }
Represents the capability of enumerating EFI variables
Enumerates all known variables on the system. Returns a list of found variable names.