pub struct FatVolume { /* private fields */ }
Expand description
Identifies a FAT16 or FAT32 Volume on the disk.
Implementations§
Source§impl FatVolume
impl FatVolume
Sourcepub async fn update_info_sector<D>(
&mut self,
block_device: &D,
) -> Result<(), Error<<D as BlockDevice>::Error>>where
D: BlockDevice,
pub async fn update_info_sector<D>(
&mut self,
block_device: &D,
) -> Result<(), Error<<D as BlockDevice>::Error>>where
D: BlockDevice,
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§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.