diff options
author | johannst <johannes.stoelp@gmail.com> | 2021-06-01 22:59:17 +0200 |
---|---|---|
committer | johannst <johannes.stoelp@gmail.com> | 2021-06-01 22:59:17 +0200 |
commit | 623f731b440e604e0d90fc764e9a228ada09f473 (patch) | |
tree | 191a3f6b8b0517192db6587244d841f45f512b67 /src/lib.rs | |
parent | e0ea6d9276bdb29714b4961445c43af1fad3e1b1 (diff) | |
download | mini-kvm-rs-623f731b440e604e0d90fc764e9a228ada09f473.tar.gz mini-kvm-rs-623f731b440e604e0d90fc764e9a228ada09f473.zip |
added fmt::Display impl for kvm register structs
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -3,6 +3,7 @@ use std::io; use std::ops; use std::os::unix::io::AsRawFd; +pub mod fmt; pub mod kvm; pub mod kvm_sys; pub mod vcpu; |