pub enum AppPartitionType {
Factory,
Ota(u8),
Test,
}
Expand description
Application partition subtype
Variants§
Trait Implementations§
Source§impl Clone for AppPartitionType
impl Clone for AppPartitionType
Source§fn clone(&self) -> AppPartitionType
fn clone(&self) -> AppPartitionType
Returns a copy 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 AppPartitionType
impl Debug for AppPartitionType
Source§impl Default for AppPartitionType
impl Default for AppPartitionType
Source§fn default() -> AppPartitionType
fn default() -> AppPartitionType
Returns the “default value” for a type. Read more
Source§impl From<AppPartitionType> for PartitionType
impl From<AppPartitionType> for PartitionType
Source§fn from(subtype: AppPartitionType) -> Self
fn from(subtype: AppPartitionType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AppPartitionType
impl PartialEq for AppPartitionType
Source§impl TryFrom<AppPartitionType> for u8
impl TryFrom<AppPartitionType> for u8
Source§type Error = PartitionError
type Error = PartitionError
The type returned in the event of a conversion error.
Source§impl TryFrom<u8> for AppPartitionType
impl TryFrom<u8> for AppPartitionType
impl Copy for AppPartitionType
impl Eq for AppPartitionType
impl StructuralPartialEq for AppPartitionType
Auto Trait Implementations§
impl Freeze for AppPartitionType
impl RefUnwindSafe for AppPartitionType
impl Send for AppPartitionType
impl Sync for AppPartitionType
impl Unpin for AppPartitionType
impl UnwindSafe for AppPartitionType
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