1 2 3 4 5 6 7 8 9 10 11 12 13
// SPDX-License-Identifier: Apache-2.0 //! Operations and types for launching on Linux pub(crate) mod ioctl; #[cfg(feature = "sev")] pub(crate) mod sev; #[cfg(feature = "snp")] pub(crate) mod snp; #[cfg(any(feature = "sev", feature = "snp"))] pub(crate) mod shared;