#[non_exhaustive]pub struct InstanceActionInfo {
pub action_type: InstanceAction,
}Expand description
Validated /actions PUT body. The SendCtrlAltDel rejection happens at the
controller (so the wire shape stays compatible with x86-only Firecracker SDKs that
might post the verb without checking architecture).
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.action_type: InstanceActionAction to dispatch.
Trait Implementations§
Source§impl Clone for InstanceActionInfo
impl Clone for InstanceActionInfo
Source§fn clone(&self) -> InstanceActionInfo
fn clone(&self) -> InstanceActionInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InstanceActionInfo
impl Debug for InstanceActionInfo
Source§impl From<RawInstanceActionInfo> for InstanceActionInfo
impl From<RawInstanceActionInfo> for InstanceActionInfo
Source§fn from(raw: RawInstanceActionInfo) -> Self
fn from(raw: RawInstanceActionInfo) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InstanceActionInfo
impl RefUnwindSafe for InstanceActionInfo
impl Send for InstanceActionInfo
impl Sync for InstanceActionInfo
impl Unpin for InstanceActionInfo
impl UnsafeUnpin for InstanceActionInfo
impl UnwindSafe for InstanceActionInfo
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