pub struct VmmPingResponse {
pub build_version: Option<String>,
pub version: String,
pub pid: Option<i64>,
pub features: Option<Vec<String>>,
}Expand description
VmmPingResponse : Virtual Machine Monitor information
Fields§
§build_version: Option<String>§version: String§pid: Option<i64>§features: Option<Vec<String>>Implementations§
Source§impl VmmPingResponse
impl VmmPingResponse
Sourcepub fn new(version: String) -> VmmPingResponse
pub fn new(version: String) -> VmmPingResponse
Virtual Machine Monitor information
Trait Implementations§
Source§impl Clone for VmmPingResponse
impl Clone for VmmPingResponse
Source§fn clone(&self) -> VmmPingResponse
fn clone(&self) -> VmmPingResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VmmPingResponse
impl Debug for VmmPingResponse
Source§impl Default for VmmPingResponse
impl Default for VmmPingResponse
Source§fn default() -> VmmPingResponse
fn default() -> VmmPingResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VmmPingResponse
impl<'de> Deserialize<'de> for VmmPingResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for VmmPingResponse
impl PartialEq for VmmPingResponse
Source§impl Serialize for VmmPingResponse
impl Serialize for VmmPingResponse
impl StructuralPartialEq for VmmPingResponse
Auto Trait Implementations§
impl Freeze for VmmPingResponse
impl RefUnwindSafe for VmmPingResponse
impl Send for VmmPingResponse
impl Sync for VmmPingResponse
impl Unpin for VmmPingResponse
impl UnwindSafe for VmmPingResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more