morpheus_network::transfer::disk

Struct Fat32Formatter

Source
pub struct Fat32Formatter;
Expand description

FAT32 filesystem formatter

Implementations§

Source§

impl Fat32Formatter

Source

pub fn format<B: BlockIo>( block_io: &mut B, partition_start_lba: u64, partition_sectors: u64, volume_label: &str, ) -> DiskResult<Fat32Info>

Format a partition as FAT32

Creates minimal FAT32 with:

  • Boot sector at LBA 0
  • FSInfo at LBA 1
  • Backup boot sector at LBA 6
  • Two FAT tables starting at LBA 32
  • Root directory at data start
Source

fn optimal_cluster_size(total_sectors: u32) -> u8

Calculate optimal cluster size for partition

Source

fn calculate_fat_size(total_sectors: u32, reserved: u16, spc: u8) -> u32

Calculate FAT size in sectors

Source

fn build_boot_sector( total_sectors: u32, fat_size: u32, spc: u8, hidden_sectors: u32, label: &str, ) -> [u8; 512]

Build FAT32 boot sector

Source

fn build_fsinfo(free_clusters: u32) -> [u8; 512]

Build FSInfo sector

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> 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.