#[repr(u8)]pub enum AppPartitionSubType {
Show 18 variants
Factory = 0,
Ota0 = 16,
Ota1 = 17,
Ota2 = 18,
Ota3 = 19,
Ota4 = 20,
Ota5 = 21,
Ota6 = 22,
Ota7 = 23,
Ota8 = 24,
Ota9 = 25,
Ota10 = 26,
Ota11 = 27,
Ota12 = 28,
Ota13 = 29,
Ota14 = 30,
Ota15 = 31,
Test = 32,
}Expand description
Sub-types of an application partition.
Variants§
Factory = 0
Factory image
Ota0 = 16
OTA slot 0
Ota1 = 17
OTA slot 1
Ota2 = 18
OTA slot 2
Ota3 = 19
OTA slot 3
Ota4 = 20
OTA slot 4
Ota5 = 21
OTA slot 5
Ota6 = 22
OTA slot 6
Ota7 = 23
OTA slot 7
Ota8 = 24
OTA slot 8
Ota9 = 25
OTA slot 9
Ota10 = 26
OTA slot 10
Ota11 = 27
OTA slot 11
Ota12 = 28
OTA slot 12
Ota13 = 29
OTA slot 13
Ota14 = 30
OTA slot 14
Ota15 = 31
OTA slot 15
Test = 32
Test image
Implementations§
Trait Implementations§
Source§impl Clone for AppPartitionSubType
impl Clone for AppPartitionSubType
Source§fn clone(&self) -> AppPartitionSubType
fn clone(&self) -> AppPartitionSubType
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 AppPartitionSubType
impl Debug for AppPartitionSubType
Source§impl Hash for AppPartitionSubType
impl Hash for AppPartitionSubType
Source§impl PartialEq for AppPartitionSubType
impl PartialEq for AppPartitionSubType
Source§impl TryFrom<u8> for AppPartitionSubType
impl TryFrom<u8> for AppPartitionSubType
impl Copy for AppPartitionSubType
impl Eq for AppPartitionSubType
impl StructuralPartialEq for AppPartitionSubType
Auto Trait Implementations§
impl Freeze for AppPartitionSubType
impl RefUnwindSafe for AppPartitionSubType
impl Send for AppPartitionSubType
impl Sync for AppPartitionSubType
impl Unpin for AppPartitionSubType
impl UnwindSafe for AppPartitionSubType
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