kvm-bindings 0.14.0

Rust FFI bindings to KVM generated using bindgen.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2024 © Institute of Software, CAS. All rights reserved.
// Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

#[allow(clippy::all)]
#[allow(clippy::undocumented_unsafe_blocks)]
pub mod bindings;
#[cfg(feature = "fam-wrappers")]
pub mod fam_wrappers;

#[cfg(feature = "serde")]
mod serialize;

pub use self::bindings::*;
#[cfg(feature = "fam-wrappers")]
pub use self::fam_wrappers::*;