linux_kvm/ioctl/
device.rs

1/// The device type marker for the a KVM device file descriptor.
2#[derive(Debug)]
3pub struct KvmDevice;
4
5impl linux_io::fd::ioctl::IoDevice for KvmDevice {}