diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2021-08-17 23:10:52 +0200 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2021-08-17 23:10:52 +0200 |
commit | fb6b634de37e38fd1821f2cf9228df176f9526f5 (patch) | |
tree | 98fce2cdd9c124d72f078e40ba50e47bbef2d4ea /examples/check_caps.rs | |
parent | bd9bce8531b5d694930a47bad17cbcd2f0a3d4de (diff) | |
download | mini-kvm-rs-fb6b634de37e38fd1821f2cf9228df176f9526f5.tar.gz mini-kvm-rs-fb6b634de37e38fd1821f2cf9228df176f9526f5.zip |
cargo fmt + added fmt::skip attributes
Diffstat (limited to 'examples/check_caps.rs')
-rw-r--r-- | examples/check_caps.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/check_caps.rs b/examples/check_caps.rs index e4baf83..b9e1125 100644 --- a/examples/check_caps.rs +++ b/examples/check_caps.rs @@ -2,6 +2,7 @@ use kvm_rs::cap::CapBool::*; use kvm_rs::cap::CapInt::*; use kvm_rs::kvm::Kvm; +#[rustfmt::skip] fn main() -> std::io::Result<()> { let kvm = Kvm::new()?; |