[][src]Struct ttcore::Vm

pub struct Vm {
    pub kind: VmKind,
    pub cpu_num: u32,
    pub mem_size: u32,
    pub disk_size: u32,
    pub ip: Ipv4,
    pub port_map: HashMap<VmPort, PubPort>,
    pub during_stop: bool,
    // some fields omitted
}

描述一个容器实例的信息

Fields

kind: VmKind

虚拟实例的类型

cpu_num: u32

CPU 数量

mem_size: u32

单位: MB

disk_size: u32

单位: MB

ip: Ipv4

Vm IP 由 VmId 决定, 使用'10.10.x.x/8'网段

port_map: HashMap<VmPort, PubPort>

用于 DNAT 的内外端口影射关系,

during_stop: bool

是否处于暂停流程中

Implementations

impl Vm[src]

pub fn id(&self) -> VmId[src]

get VmId

Trait Implementations

impl Clone for Vm[src]

impl Debug for Vm[src]

impl Drop for Vm[src]

Auto Trait Implementations

impl !RefUnwindSafe for Vm

impl Send for Vm

impl Sync for Vm

impl Unpin for Vm

impl !UnwindSafe for Vm

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.