pub struct UdfFileEntry {
pub name: String,
pub is_dir: bool,
pub size: u64,
pub fe_lba: u32,
}Expand description
A single entry returned by UDF directory traversal.
Fields§
§name: StringDecoded filename (OSTA CS0: UTF-8 or UTF-16BE).
is_dir: boolTrue if this entry is a directory.
size: u64File size in bytes (Information Length from FE).
fe_lba: u32Physical LBA of the File Entry descriptor sector.
Trait Implementations§
Source§impl Clone for UdfFileEntry
impl Clone for UdfFileEntry
Source§fn clone(&self) -> UdfFileEntry
fn clone(&self) -> UdfFileEntry
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 UdfFileEntry
impl RefUnwindSafe for UdfFileEntry
impl Send for UdfFileEntry
impl Sync for UdfFileEntry
impl Unpin for UdfFileEntry
impl UnsafeUnpin for UdfFileEntry
impl UnwindSafe for UdfFileEntry
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