pub struct FatVolume { /* private fields */ }
Expand description
Identifies a FAT16 Volume on the disk.
Implementations§
Source§impl FatVolume
impl FatVolume
Sourcepub fn update_info_sector<D, T>(
&mut self,
controller: &mut Controller<D, T>,
) -> Result<(), Error<D::Error>>where
D: BlockDevice,
T: TimeSource,
pub fn update_info_sector<D, T>(
&mut self,
controller: &mut Controller<D, T>,
) -> Result<(), Error<D::Error>>where
D: BlockDevice,
T: TimeSource,
Write a new entry in the FAT
Trait Implementations§
impl Eq for FatVolume
impl StructuralPartialEq for FatVolume
Auto Trait Implementations§
impl Freeze for FatVolume
impl RefUnwindSafe for FatVolume
impl Send for FatVolume
impl Sync for FatVolume
impl Unpin for FatVolume
impl UnwindSafe for FatVolume
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