pub struct UdfDirEntry {
pub name: String,
pub is_directory: bool,
pub size: u64,
pub icb: LongAllocationDescriptor,
pub characteristics: FileCharacteristics,
}Available on crate features
alloc and sync only.Expand description
A UDF directory entry
Fields§
§name: StringEntry name
is_directory: boolWhether this is a directory
size: u64File size in bytes
icb: LongAllocationDescriptorICB location for this entry
characteristics: FileCharacteristicsFile characteristics
Implementations§
Source§impl UdfDirEntry
impl UdfDirEntry
Trait Implementations§
Source§impl Clone for UdfDirEntry
impl Clone for UdfDirEntry
Source§fn clone(&self) -> UdfDirEntry
fn clone(&self) -> UdfDirEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for UdfDirEntry
impl RefUnwindSafe for UdfDirEntry
impl Send for UdfDirEntry
impl Sync for UdfDirEntry
impl Unpin for UdfDirEntry
impl UnsafeUnpin for UdfDirEntry
impl UnwindSafe for UdfDirEntry
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