Enum vjoy_wrapper::vjoy_extra::VJDRegistryError [−][src]
pub enum VJDRegistryError {
InvalidDevice,
InvalidOrder,
DuplicateEntry,
PathError(Error),
}Expand description
Describes an error state of [get_vjoy_devices_reg].
Variants
A device number was not in the range [1, VJGeneral::MAX_DEVICES]. This
is a sign of malformed entries.
A device number found in registry appeared in an unordered fashion. This is a sign of malformed entries.
A device number was found at least twice in registry. This is a sign of malformed entries.
PathError(Error)The access to the registry path where devices are registered has failed.
std::io::Error is provided for further investigation.