winreg 0.56.0

Rust bindings to MS Windows Registry API
Documentation
// Copyright 2026, Igor Shaula
// Licensed under the MIT License <LICENSE or
// http://opensource.org/licenses/MIT>. This file
// may not be copied, modified, or distributed
// except according to those terms.
use crate::{RegKey, RegValue};
use std::io;
use windows_sys::Win32::Foundation;

/// Iterator over values
pub struct EnumValues<'key> {
    pub(crate) key: &'key RegKey,
    pub(crate) index: u32,
}

impl<'a> Iterator for EnumValues<'a> {
    type Item = io::Result<(String, RegValue<'static>)>;

    fn next(&mut self) -> Option<io::Result<(String, RegValue<'static>)>> {
        match self.key.enum_value(self.index) {
            None => None,
            Some(Err(err)) => {
                self.index += 1;
                Some(Err(err))
            }
            Some(Ok((name_os_string, value))) => {
                self.index += 1;
                match name_os_string.into_string() {
                    Ok(name_string) => Some(Ok((name_string, value))),
                    Err(_) => Some(werr!(Foundation::ERROR_INVALID_DATA)),
                }
            }
        }
    }

    fn nth(&mut self, n: usize) -> Option<Self::Item> {
        self.index += n as u32;
        self.next()
    }
}