#[non_exhaustive]pub enum UpdateStatus {
Ok,
RequestRefused,
Reserved(u8),
}Expand description
update_status values (Table 70).
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Ok
0x00 — OK, Host processed the updated PMT and is ready to receive the Local TS.
RequestRefused
0x01 — Request refused.
Reserved(u8)
Reserved (0x02–0xFF).
Implementations§
Trait Implementations§
Source§impl Clone for UpdateStatus
impl Clone for UpdateStatus
Source§fn clone(&self) -> UpdateStatus
fn clone(&self) -> UpdateStatus
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 moreimpl Copy for UpdateStatus
Source§impl Debug for UpdateStatus
impl Debug for UpdateStatus
Source§impl Display for UpdateStatus
impl Display for UpdateStatus
impl Eq for UpdateStatus
Source§impl PartialEq for UpdateStatus
impl PartialEq for UpdateStatus
Source§impl Serialize for UpdateStatus
Available on crate feature serde only.
impl Serialize for UpdateStatus
Available on crate feature
serde only.impl StructuralPartialEq for UpdateStatus
Auto Trait Implementations§
impl Freeze for UpdateStatus
impl RefUnwindSafe for UpdateStatus
impl Send for UpdateStatus
impl Sync for UpdateStatus
impl Unpin for UpdateStatus
impl UnsafeUnpin for UpdateStatus
impl UnwindSafe for UpdateStatus
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