pub struct Upgrade {
pub new_version_state: Option<i64>,
pub cur_state_code: Option<i64>,
pub status: Option<String>,
pub err_code: Option<i64>,
}Expand description
Firmware-update availability/progress (upgrade_state).
Fields§
§new_version_state: Option<i64>Whether an update is available/pending (new_version_state).
cur_state_code: Option<i64>Non-zero ⇒ a flash is in progress (cur_state_code).
status: Option<String>Activity status (status, e.g. IDLE).
err_code: Option<i64>Failed-update error code (err_code).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Upgrade
impl<'de> Deserialize<'de> for Upgrade
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
impl Eq for Upgrade
impl StructuralPartialEq for Upgrade
Auto Trait Implementations§
impl Freeze for Upgrade
impl RefUnwindSafe for Upgrade
impl Send for Upgrade
impl Sync for Upgrade
impl Unpin for Upgrade
impl UnsafeUnpin for Upgrade
impl UnwindSafe for Upgrade
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.