pub struct FormatConfiguration {
pub fs_type: FatFsType,
pub fat_backup_copy: bool,
pub volume_data_alignment: NonZeroU16,
pub root_dir_entries: NonZeroU16,
pub cluster_size: u32,
}Expand description
Configuration for formatting a FAT partition.
Fields§
§fs_type: FatFsTypeType of FAT filesystem to create.
fat_backup_copy: boolWhether to create a backup copy of the FAT table.
volume_data_alignment: NonZeroU16Volume data alignment in number of sectors.
root_dir_entries: NonZeroU16Number of root directory entries.
cluster_size: u32Cluster size in bytes.