pub enum FatSpecificInfo {
Fat16(Fat16Info),
Fat32(Fat32Info),
}
Expand description
Indentifies the supported types of FAT format
Variants§
Trait Implementations§
Source§impl Clone for FatSpecificInfo
impl Clone for FatSpecificInfo
Source§fn clone(&self) -> FatSpecificInfo
fn clone(&self) -> FatSpecificInfo
Returns a copy of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FatSpecificInfo
impl Debug for FatSpecificInfo
Source§impl PartialEq for FatSpecificInfo
impl PartialEq for FatSpecificInfo
impl Eq for FatSpecificInfo
impl StructuralPartialEq for FatSpecificInfo
Auto Trait Implementations§
impl Freeze for FatSpecificInfo
impl RefUnwindSafe for FatSpecificInfo
impl Send for FatSpecificInfo
impl Sync for FatSpecificInfo
impl Unpin for FatSpecificInfo
impl UnwindSafe for FatSpecificInfo
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
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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.