[][src]Struct ttserver_def::RespGetServerInfo

pub struct RespGetServerInfo {
    pub vm_total: u32,
    pub cpu_total: u32,
    pub cpu_used: u32,
    pub mem_total: u32,
    pub mem_used: u32,
    pub disk_total: u32,
    pub disk_used: u32,
    pub supported_list: Vec<String>,
}

Fields

vm_total: u32cpu_total: u32cpu_used: u32mem_total: u32mem_used: u32disk_total: u32disk_used: u32supported_list: Vec<String>

Trait Implementations

impl Clone for RespGetServerInfo[src]

impl Debug for RespGetServerInfo[src]

impl Default for RespGetServerInfo[src]

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

impl Eq for RespGetServerInfo[src]

impl Ord for RespGetServerInfo[src]

impl PartialEq<RespGetServerInfo> for RespGetServerInfo[src]

impl PartialOrd<RespGetServerInfo> for RespGetServerInfo[src]

impl Serialize for RespGetServerInfo[src]

impl StructuralEq for RespGetServerInfo[src]

impl StructuralPartialEq for RespGetServerInfo[src]

Auto Trait Implementations

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.