pub struct DerivationActor<B>where
B: PipelineBuilder,{ /* private fields */ }Expand description
Implementations§
Source§impl<B> DerivationActor<B>where
B: PipelineBuilder,
impl<B> DerivationActor<B>where
B: PipelineBuilder,
Sourcepub fn new(state: B) -> (DerivationInboundChannels, Self)
pub fn new(state: B) -> (DerivationInboundChannels, Self)
Creates a new instance of the DerivationActor.
Trait Implementations§
Source§impl<B> Debug for DerivationActor<B>where
B: PipelineBuilder + Debug,
impl<B> Debug for DerivationActor<B>where
B: PipelineBuilder + Debug,
Source§impl<B> NodeActor for DerivationActor<B>where
B: PipelineBuilder,
impl<B> NodeActor for DerivationActor<B>where
B: PipelineBuilder,
Source§type Error = DerivationError
type Error = DerivationError
The error type for the actor.
Source§type OutboundData = DerivationContext
type OutboundData = DerivationContext
The communication context used by the actor.
These are the channels that the actor will use to send messages to other actors.
Source§type InboundData = DerivationInboundChannels
type InboundData = DerivationInboundChannels
The inbound communication channels used by the actor.
These are the channels that the actor will use to receive messages from other actors.
Source§fn build(config: Self::Builder) -> (Self::InboundData, Self)
fn build(config: Self::Builder) -> (Self::InboundData, Self)
Builds the actor.
Auto Trait Implementations§
impl<B> Freeze for DerivationActor<B>where
B: Freeze,
impl<B> !RefUnwindSafe for DerivationActor<B>
impl<B> Send for DerivationActor<B>
impl<B> Sync for DerivationActor<B>
impl<B> Unpin for DerivationActor<B>where
B: Unpin,
impl<B> !UnwindSafe for DerivationActor<B>
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> 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