pub struct GuestConfig {
pub guest_svn: u32,
pub max_vtl: u8,
pub isolation_type: ConfigIsolationType,
pub image: Image,
}
Expand description
The config used to describe an initial guest context to be generated by the tool.
Fields§
§guest_svn: u32
The SVN of this guest.
max_vtl: u8
The maximum VTL to be enabled for the guest.
isolation_type: ConfigIsolationType
The isolation type to be used for the guest.
image: Image
The image to load into the guest.
Trait Implementations§
Source§impl Debug for GuestConfig
impl Debug for GuestConfig
Source§impl<'de> Deserialize<'de> for GuestConfig
impl<'de> Deserialize<'de> for GuestConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GuestConfig
impl RefUnwindSafe for GuestConfig
impl Send for GuestConfig
impl Sync for GuestConfig
impl Unpin for GuestConfig
impl UnwindSafe for GuestConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more