pub struct Runtime {
pub store: Option<Arc<dyn Store>>,
pub stream_writer: Option<StreamWriter>,
}Expand description
Graph execution runtime context passed to nodes and middleware.
Fields§
§store: Option<Arc<dyn Store>>§stream_writer: Option<StreamWriter>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Runtime
impl !RefUnwindSafe for Runtime
impl Send for Runtime
impl Sync for Runtime
impl Unpin for Runtime
impl UnsafeUnpin for Runtime
impl !UnwindSafe for Runtime
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