pub struct Fat32Fs { /* private fields */ }Expand description
FAT32 filesystem
Implementations§
Source§impl Fat32Fs
impl Fat32Fs
Sourcepub fn from_image(
image_data: &[u8],
readonly: bool,
) -> Result<Self, KernelError>
pub fn from_image( image_data: &[u8], readonly: bool, ) -> Result<Self, KernelError>
Create a FAT32 filesystem from raw image data.
image_data should be a complete FAT32 volume image.
The image is loaded entirely into memory (sector cache).