Struct PartitionEntry

Source
pub struct PartitionEntry {
    pub type_: PartitionType,
    pub offset: u32,
    pub size: usize,
    pub encrypted: bool,
    /* private fields */
}
Expand description

ESP Partition info

Binary representation:

OffLenDesc
02Magic
21Type
31SubType
44Offset
84Size
1216Name
284Flags

Fields§

§type_: PartitionType

Partition type and subtype

§offset: u32

Partition offset

§size: usize

Partition size

§encrypted: bool

Partition encrypted flag

Implementations§

Source§

impl PartitionEntry

Source

pub const MAGIC: [u8; 2]

Magic bytes at beginning binary partition representation

Source

pub const SIZE: usize = 32usize

The size of binary represented partition data

Source

pub const MAX_NAME_LEN: usize = 16usize

Max partition name length

Source

pub fn new( type_: impl Into<PartitionType>, offset: u32, size: usize, name: impl AsRef<str>, encrypted: bool, ) -> Result<Self, PartitionError>

Create partition info

Source

pub fn set_offset(&mut self, offset: u32) -> Result<(), PartitionError>

Set partition offset with alignment check

Source

pub fn name(&self) -> &str

Get partition name

Source

pub fn set_name(&mut self, name: impl AsRef<str>) -> Result<(), PartitionError>

Set partition name

Source

pub fn from_bytes(data: &PartitionBuffer) -> Result<Self, PartitionError>

Convert partition data from binary representation

Source

pub fn to_bytes(&self, data: &mut PartitionBuffer) -> Result<(), PartitionError>

Convert partition data to binary representation

Trait Implementations§

Source§

impl AsRef<PartitionEntry> for PartitionEntry

Source§

fn as_ref(&self) -> &Self

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl Clone for PartitionEntry

Source§

fn clone(&self) -> PartitionEntry

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for PartitionEntry

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for PartitionEntry

Source§

fn default() -> PartitionEntry

Returns the “default value” for a type. Read more
Source§

impl PartialEq for PartitionEntry

Source§

fn eq(&self, other: &PartitionEntry) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl TryFrom<&[u8]> for PartitionEntry

Source§

type Error = PartitionError

The type returned in the event of a conversion error.
Source§

fn try_from(data: &[u8]) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<&[u8; 32]> for PartitionEntry

Source§

type Error = PartitionError

The type returned in the event of a conversion error.
Source§

fn try_from(data: &PartitionBuffer) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl Eq for PartitionEntry

Source§

impl StructuralPartialEq for PartitionEntry

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.