pub(crate) enum ResourceFile {
Embedded(&'static File<'static>),
Filesystem {
name: String,
full_path: PathBuf,
},
}
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ResourceFile
impl RefUnwindSafe for ResourceFile
impl Send for ResourceFile
impl Sync for ResourceFile
impl Unpin for ResourceFile
impl UnwindSafe for ResourceFile
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