pub struct WaitPublicEndpoint;
Expand description
The notification when a public server binded to a port.
Trait Implementations§
Source§impl Interaction for WaitPublicEndpoint
impl Interaction for WaitPublicEndpoint
Source§type Output = HttpServerLink
type Output = HttpServerLink
The result of the
Interaction
that will be returned by InteractionHandler
.Source§impl InteractionHandler<WaitPublicEndpoint> for RillServer
impl InteractionHandler<WaitPublicEndpoint> for RillServer
Source§fn handle<'life0, 'life1, 'async_trait>(
&'life0 mut self,
_msg: WaitPublicEndpoint,
_ctx: &'life1 mut Context<Self>,
) -> Pin<Box<dyn Future<Output = Result<HttpServerLink, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn handle<'life0, 'life1, 'async_trait>(
&'life0 mut self,
_msg: WaitPublicEndpoint,
_ctx: &'life1 mut Context<Self>,
) -> Pin<Box<dyn Future<Output = Result<HttpServerLink, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Asyncronous method that receives incoming message.
Auto Trait Implementations§
impl Freeze for WaitPublicEndpoint
impl RefUnwindSafe for WaitPublicEndpoint
impl Send for WaitPublicEndpoint
impl Sync for WaitPublicEndpoint
impl Unpin for WaitPublicEndpoint
impl UnwindSafe for WaitPublicEndpoint
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