pub struct WaitPrivateEndpoint;
Expand description
The notification when a private server binded to a port.
Trait Implementations§
Source§impl Interaction for WaitPrivateEndpoint
impl Interaction for WaitPrivateEndpoint
Source§type Output = HttpServerLink
type Output = HttpServerLink
The result of the
Interaction
that will be returned by InteractionHandler
.Source§impl InteractionHandler<WaitPrivateEndpoint> for RillServer
impl InteractionHandler<WaitPrivateEndpoint> for RillServer
Source§fn handle<'life0, 'life1, 'async_trait>(
&'life0 mut self,
_msg: WaitPrivateEndpoint,
_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: WaitPrivateEndpoint,
_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 WaitPrivateEndpoint
impl RefUnwindSafe for WaitPrivateEndpoint
impl Send for WaitPrivateEndpoint
impl Sync for WaitPrivateEndpoint
impl Unpin for WaitPrivateEndpoint
impl UnwindSafe for WaitPrivateEndpoint
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