pub struct Ports<A: Actor> { /* private fields */ }
Expand description
A polymorphic dictionary that stores ports for an actor’s handlers. The interface memoizes the ports so that they are reused. We do not (yet) support stable identifiers across multiple instances of the same actor.
Implementations§
Source§impl<A: Actor> Ports<A>
impl<A: Actor> Ports<A>
Sourcepub fn bind<M: RemoteMessage>(&self)where
A: Handler<M>,
pub fn bind<M: RemoteMessage>(&self)where
A: Handler<M>,
Bind the given message type to its default port.
Sourcepub fn bind_to<M: RemoteMessage>(&self, port_index: u64)where
A: Handler<M>,
pub fn bind_to<M: RemoteMessage>(&self, port_index: u64)where
A: Handler<M>,
Bind the given message type to the provided port. Ports cannot be rebound to different message types; and attempting to do so will result in a panic.
Auto Trait Implementations§
impl<A> Freeze for Ports<A>
impl<A> !RefUnwindSafe for Ports<A>
impl<A> Send for Ports<A>
impl<A> Sync for Ports<A>
impl<A> Unpin for Ports<A>
impl<A> !UnwindSafe for Ports<A>
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
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Source§impl<A, M> Handler<IndexedErasedUnbound<M>> for A
impl<A, M> Handler<IndexedErasedUnbound<M>> for A
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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