[][src]Struct ttcore_def::VmInfo

pub struct VmInfo {
    pub os: String,
    pub cpu_num: u32,
    pub mem_size: u32,
    pub disk_size: u32,
    pub ip: Ipv4,
    pub port_map: HashMap<VmPort, PubPort>,
}

以此结构响应客户端请求, 防止触发 Drop 动作

Fields

os: String

系统名称

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 的内外端口影射关系,

Trait Implementations

impl Clone for VmInfo[src]

impl Debug for VmInfo[src]

impl<'de> Deserialize<'de> for VmInfo[src]

impl Serialize for VmInfo[src]

Auto Trait Implementations

impl RefUnwindSafe for VmInfo

impl Send for VmInfo

impl Sync for VmInfo

impl Unpin for VmInfo

impl UnwindSafe for VmInfo

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.