pub struct Interpreter { /* private fields */ }
Implementations§
Source§impl Interpreter
impl Interpreter
pub fn new( network: Network<OperationSettings>, namespace: Option<String>, components: Option<HandlerMap>, callback: LocalScope, root_config: Option<&RuntimeConfig>, parent_span: &Span, ) -> Result<Self, Error>
pub async fn invoke( &self, invocation: Invocation, config: Option<RuntimeConfig>, ) -> Result<PacketStream, Error>
pub async fn start( &mut self, options: Option<InterpreterOptions>, observer: Option<Box<dyn Observer + Send + Sync>>, )
pub async fn stop(&self) -> Result<(), Error>
pub fn components(&self) -> &HandlerMap
pub fn render_dotviz(&self, op: &str) -> Result<String, Error>
Trait Implementations§
Source§impl Component for Interpreter
impl Component for Interpreter
Source§fn handle(
&self,
invocation: Invocation,
config: Option<RuntimeConfig>,
cb: LocalScope,
) -> BoxFuture<'_, Result<PacketStream, ComponentError>>
fn handle( &self, invocation: Invocation, config: Option<RuntimeConfig>, cb: LocalScope, ) -> BoxFuture<'_, Result<PacketStream, ComponentError>>
The
handle
method is called when a component’s operation is invoked. The component is expected to delegate to the appopriate operation based on the Invocation target.Source§fn signature(&self) -> &ComponentSignature
fn signature(&self) -> &ComponentSignature
The
signature
method returns the ComponentSignature for the component.Auto Trait Implementations§
impl !Freeze for Interpreter
impl !RefUnwindSafe for Interpreter
impl Send for Interpreter
impl Sync for Interpreter
impl Unpin for Interpreter
impl !UnwindSafe for Interpreter
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more