handle: re-export all of the wasi types used by handles

This commit is contained in:
Pat Hickey
2020-09-14 16:27:33 -07:00
parent 43d2799fa2
commit 6db24fd08f
4 changed files with 180 additions and 182 deletions

View File

@@ -5,7 +5,7 @@ use std::ops::Deref;
use std::path::PathBuf;
use std::rc::Rc;
pub(crate) struct EntryHandle(Rc<dyn Handle>);
pub struct EntryHandle(Rc<dyn Handle>);
impl EntryHandle {
#[allow(dead_code)]