pub struct InstanceInfo {
pub app_name: String,
pub id: String,
pub state: String,
pub vmm_version: String,
}
Expand description
Provides metadata about a Firecracker instance, including its identity, current state, and version information. This is useful for monitoring and managing multiple Firecracker instances.
Fields§
§app_name: String
Name of the application
id: String
Instance identifier
state: String
Current state of the instance
vmm_version: String
Version of the VMM
Trait Implementations§
Source§impl Debug for InstanceInfo
impl Debug for InstanceInfo
Source§impl<'de> Deserialize<'de> for InstanceInfo
impl<'de> Deserialize<'de> for InstanceInfo
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
Auto Trait Implementations§
impl Freeze for InstanceInfo
impl RefUnwindSafe for InstanceInfo
impl Send for InstanceInfo
impl Sync for InstanceInfo
impl Unpin for InstanceInfo
impl UnwindSafe for InstanceInfo
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