Struct forth3::dictionary::AsyncBuiltinEntry
source · #[repr(C)]pub struct AsyncBuiltinEntry<T: 'static> {
pub hdr: EntryHeader<T>,
}
Available on crate feature
async
only.Expand description
A dictionary entry for an asynchronous builtin word.
This type is typically created using the async_builtin!
macro, and is used with the
AsyncForth
VM type only. See the documentation for
AsyncForth
for details on using asynchronous builtin
words.
Fields§
§hdr: EntryHeader<T>
Auto Trait Implementations§
impl<T> Freeze for AsyncBuiltinEntry<T>
impl<T> RefUnwindSafe for AsyncBuiltinEntry<T>where
T: RefUnwindSafe,
impl<T> !Send for AsyncBuiltinEntry<T>
impl<T> !Sync for AsyncBuiltinEntry<T>
impl<T> Unpin for AsyncBuiltinEntry<T>where
T: Unpin,
impl<T> UnwindSafe for AsyncBuiltinEntry<T>where
T: UnwindSafe,
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