pub struct FntSubtable<'a> {
pub directory: Cow<'a, FntDirectory>,
pub data: Cow<'a, [u8]>,
}Expand description
Contains a directory’s immediate children (files and folders).
Fields§
§directory: Cow<'a, FntDirectory>Reference to FntDirectory.
data: Cow<'a, [u8]>Raw subtable data.
Implementations§
Source§impl FntSubtable<'_>
impl FntSubtable<'_>
Sourcepub fn iter(&self) -> IterFntSubtable<'_> ⓘ
pub fn iter(&self) -> IterFntSubtable<'_> ⓘ
Returns an iterator over all immediate children (files and directories) in this subtable.
Auto Trait Implementations§
impl<'a> Freeze for FntSubtable<'a>
impl<'a> RefUnwindSafe for FntSubtable<'a>
impl<'a> Send for FntSubtable<'a>
impl<'a> Sync for FntSubtable<'a>
impl<'a> Unpin for FntSubtable<'a>
impl<'a> UnsafeUnpin for FntSubtable<'a>
impl<'a> UnwindSafe for FntSubtable<'a>
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