pub struct AssetFileEntry<'a> {
pub path: String,
pub reader: Box<dyn Read + 'a>,
}Expand description
Asset file entry with reader for streaming content
Fields§
§path: String§reader: Box<dyn Read + 'a>Auto Trait Implementations§
impl<'a> Freeze for AssetFileEntry<'a>
impl<'a> !RefUnwindSafe for AssetFileEntry<'a>
impl<'a> !Send for AssetFileEntry<'a>
impl<'a> !Sync for AssetFileEntry<'a>
impl<'a> Unpin for AssetFileEntry<'a>
impl<'a> UnsafeUnpin for AssetFileEntry<'a>
impl<'a> !UnwindSafe for AssetFileEntry<'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