[][src]Struct ppcore::VmCfg

pub struct VmCfg {
    pub image_path: String,
    pub port_list: Vec<VmPort>,
    pub kind: Option<VmKind>,
    pub cpu_num: Option<u32>,
    pub mem_size: Option<u32>,
    pub disk_size: Option<u32>,
}

用以与调用方交互

Fields

image_path: String

系统镜像路径

port_list: Vec<VmPort>

同一 Env 下所有 Vm 的内部端口都相同

kind: Option<VmKind>

虚拟实例的类型

cpu_num: Option<u32>

CPU 数量

mem_size: Option<u32>

单位: MB

disk_size: Option<u32>

单位: MB

Trait Implementations

impl Clone for VmCfg[src]

impl Debug for VmCfg[src]

Auto Trait Implementations

impl RefUnwindSafe for VmCfg

impl Send for VmCfg

impl Sync for VmCfg

impl Unpin for VmCfg

impl UnwindSafe for VmCfg

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.