pub struct Buffers<T: 'static> {
pub dstack_buf: (*mut Word, usize),
pub rstack_buf: (*mut Word, usize),
pub cstack_buf: (*mut CallContext<T>, usize),
pub input: WordStrBuf,
pub output: OutputBuf,
}
Expand description
Buffers provided to construct a new virtual machine.
Fields§
§dstack_buf: (*mut Word, usize)
§rstack_buf: (*mut Word, usize)
§cstack_buf: (*mut CallContext<T>, usize)
§input: WordStrBuf
§output: OutputBuf
Auto Trait Implementations§
impl<T> Freeze for Buffers<T>
impl<T> RefUnwindSafe for Buffers<T>where
T: RefUnwindSafe,
impl<T> !Send for Buffers<T>
impl<T> !Sync for Buffers<T>
impl<T> Unpin for Buffers<T>
impl<T> UnwindSafe for Buffers<T>where
T: RefUnwindSafe,
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