pub struct FileBuf { /* private fields */ }Expand description
Like File but owns the buffer.
Returned by [rom::load_buf] and [data::load_buf]. Requires a global allocator.
For a file of statically-known size, you might want to use [rom::load]
and [data::load] instead.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FileBuf
impl RefUnwindSafe for FileBuf
impl Send for FileBuf
impl Sync for FileBuf
impl Unpin for FileBuf
impl UnsafeUnpin for FileBuf
impl UnwindSafe for FileBuf
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