pub enum INode {
PreOpenDir(WasiPreOpenDir),
Dir(WasiDir),
File(WasiFile),
Stdin(WasiStdin),
Stdout(WasiStdout),
Stderr(WasiStderr),
}
Variants§
PreOpenDir(WasiPreOpenDir)
Dir(WasiDir)
File(WasiFile)
Stdin(WasiStdin)
Stdout(WasiStdout)
Stderr(WasiStderr)
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for INode
impl Send for INode
impl Sync for INode
impl Unpin for INode
impl UnwindSafe for INode
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