diff --git a/rustdoc/doc/doc/oak_containers_launcher/struct.QemuParams.html b/rustdoc/doc/doc/oak_containers_launcher/struct.QemuParams.html index e5c9b4a5c5..2c283c3977 100644 --- a/rustdoc/doc/doc/oak_containers_launcher/struct.QemuParams.html +++ b/rustdoc/doc/doc/oak_containers_launcher/struct.QemuParams.html @@ -27,7 +27,7 @@ §pci_passthrough: Option<String>

Pass the specified host PCI device through to the virtual machine using VFIO.

§vm_type: VmType

Type of the confidential VM. It could be Default, Sev, SevEs, -SevSnp, or Tdx (TDX is unimplemented yet)

+SevSnp, or Tdx.

Trait Implementations§

source§

impl Args for Params

source§

fn group_id() -> Option<Id>

Report the [ArgGroup::id][crate::ArgGroup::id] for this set of arguments
source§

fn augment_args<'b>(__clap_app: Command) -> Command

Append to [Command] so it can instantiate Self. Read more
source§

fn augment_args_for_update<'b>(__clap_app: Command) -> Command

Append to [Command] so it can update self. Read more
source§

impl Clone for Params

source§

fn clone(&self) -> Params

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl CommandFactory for Params

source§

fn command<'b>() -> Command

Build a [Command] that can instantiate Self. Read more
source§

fn command_for_update<'b>() -> Command

Build a [Command] that can update self. Read more
source§

impl Debug for Params

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl FromArgMatches for Params

source§

fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>

Instantiate Self from [ArgMatches], parsing the arguments as needed. Read more
source§

fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>

Instantiate Self from [ArgMatches], parsing the arguments as needed. Read more
source§

fn update_from_arg_matches( diff --git a/rustdoc/doc/doc/src/oak_containers_launcher/qemu.rs.html b/rustdoc/doc/doc/src/oak_containers_launcher/qemu.rs.html index 38193de938..edf047b6e3 100644 --- a/rustdoc/doc/doc/src/oak_containers_launcher/qemu.rs.html +++ b/rustdoc/doc/doc/src/oak_containers_launcher/qemu.rs.html @@ -385,7 +385,7 @@ pub pci_passthrough: Option<String>, /// Type of the confidential VM. It could be Default, Sev, SevEs, - /// SevSnp, or Tdx (TDX is unimplemented yet) + /// SevSnp, or Tdx. #[arg(long, required = false, value_enum, default_value_t = VmType::Default)] pub vm_type: VmType, }