#[non_exhaustive]pub enum CaEnable {
Possible,
PossiblePurchaseDialogue,
PossibleTechnicalDialogue,
NotPossibleNoEntitlement,
NotPossibleTechnical,
Rfu(u8),
}Expand description
CA_enable 7-bit value (Table, p. 32).
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.
Possible
01 — descrambling possible.
PossiblePurchaseDialogue
02 — possible under conditions (purchase dialogue).
PossibleTechnicalDialogue
03 — possible under conditions (technical dialogue).
NotPossibleNoEntitlement
71 — not possible (no entitlement).
NotPossibleTechnical
73 — not possible (technical reasons).
Rfu(u8)
Any other 7-bit value (RFU).
Implementations§
Trait Implementations§
impl Copy for CaEnable
impl Eq for CaEnable
impl StructuralPartialEq for CaEnable
Auto Trait Implementations§
impl Freeze for CaEnable
impl RefUnwindSafe for CaEnable
impl Send for CaEnable
impl Sync for CaEnable
impl Unpin for CaEnable
impl UnsafeUnpin for CaEnable
impl UnwindSafe for CaEnable
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