#[repr(u8)]pub enum ApplyUpdateAction {
Proceed = 0,
Awaitnextaction = 1,
Discontinue = 2,
}Variants§
Proceed = 0
Apply the update.
Awaitnextaction = 1
Wait at least the given delay time.
Discontinue = 2
The OTA Provider is conveying a desire to rescind a previously provided Software Image.
Implementations§
Trait Implementations§
Source§impl Clone for ApplyUpdateAction
impl Clone for ApplyUpdateAction
Source§fn clone(&self) -> ApplyUpdateAction
fn clone(&self) -> ApplyUpdateAction
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 ApplyUpdateAction
impl Debug for ApplyUpdateAction
Source§impl<'de> Deserialize<'de> for ApplyUpdateAction
impl<'de> Deserialize<'de> for ApplyUpdateAction
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 From<ApplyUpdateAction> for u8
impl From<ApplyUpdateAction> for u8
Source§fn from(val: ApplyUpdateAction) -> Self
fn from(val: ApplyUpdateAction) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ApplyUpdateAction
impl PartialEq for ApplyUpdateAction
Source§impl Serialize for ApplyUpdateAction
impl Serialize for ApplyUpdateAction
impl Copy for ApplyUpdateAction
impl Eq for ApplyUpdateAction
impl StructuralPartialEq for ApplyUpdateAction
Auto Trait Implementations§
impl Freeze for ApplyUpdateAction
impl RefUnwindSafe for ApplyUpdateAction
impl Send for ApplyUpdateAction
impl Sync for ApplyUpdateAction
impl Unpin for ApplyUpdateAction
impl UnwindSafe for ApplyUpdateAction
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