[][src]Struct qapi_qmp::MigrationInfo

pub struct MigrationInfo {
    pub expected_downtime: Option<isize>,
    pub total_time: Option<isize>,
    pub downtime: Option<isize>,
    pub postcopy_vcpu_blocktime: Option<Vec<u32>>,
    pub vfio: Option<VfioStats>,
    pub cpu_throttle_percentage: Option<isize>,
    pub status: Option<MigrationStatus>,
    pub setup_time: Option<isize>,
    pub socket_address: Option<Vec<SocketAddress>>,
    pub disk: Option<MigrationStats>,
    pub postcopy_blocktime: Option<u32>,
    pub compression: Option<CompressionStats>,
    pub xbzrle_cache: Option<XBZRLECacheStats>,
    pub error_desc: Option<String>,
    pub ram: Option<MigrationStats>,
}

Fields

expected_downtime: Option<isize>total_time: Option<isize>downtime: Option<isize>postcopy_vcpu_blocktime: Option<Vec<u32>>vfio: Option<VfioStats>cpu_throttle_percentage: Option<isize>status: Option<MigrationStatus>setup_time: Option<isize>socket_address: Option<Vec<SocketAddress>>disk: Option<MigrationStats>postcopy_blocktime: Option<u32>compression: Option<CompressionStats>xbzrle_cache: Option<XBZRLECacheStats>error_desc: Option<String>ram: Option<MigrationStats>

Trait Implementations

impl Clone for MigrationInfo[src]

impl Debug for MigrationInfo[src]

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

impl Serialize for MigrationInfo[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.