pub struct AssembledNode<St, R, F, S>where
S: StorageLayout,{
pub engine: EngineState<S>,
pub state: St,
pub on_event: F,
pub request_endpoints: PhantomData<R>,
}Fields§
§engine: EngineState<S>§state: St§on_event: F§request_endpoints: PhantomData<R>Auto Trait Implementations§
impl<St, R, F, S> Freeze for AssembledNode<St, R, F, S>
impl<St, R, F, S> RefUnwindSafe for AssembledNode<St, R, F, S>where
EngineState<S>: RefUnwindSafe,
St: RefUnwindSafe,
F: RefUnwindSafe,
PhantomData<R>: RefUnwindSafe,
impl<St, R, F, S> Send for AssembledNode<St, R, F, S>
impl<St, R, F, S> Sync for AssembledNode<St, R, F, S>
impl<St, R, F, S> Unpin for AssembledNode<St, R, F, S>
impl<St, R, F, S> UnsafeUnpin for AssembledNode<St, R, F, S>
impl<St, R, F, S> UnwindSafe for AssembledNode<St, R, F, S>
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