pub struct NodeTransportStartup { /* private fields */ }Expand description
A spawned Node host whose initialization response has not necessarily arrived yet. Keeping the transport available separately from the init receiver lets callers publish it to their shutdown path before extension factories or lifecycle hooks can block.
Implementations§
Source§impl NodeTransportStartup
impl NodeTransportStartup
Sourcepub fn transport(&self) -> NodeTransport
pub fn transport(&self) -> NodeTransport
Return a clone of the live transport. The clone is intentionally cheap
and can be stored in a concurrent shutdown slot while wait blocks.
Auto Trait Implementations§
impl !Sync for NodeTransportStartup
impl Freeze for NodeTransportStartup
impl RefUnwindSafe for NodeTransportStartup
impl Send for NodeTransportStartup
impl Unpin for NodeTransportStartup
impl UnsafeUnpin for NodeTransportStartup
impl UnwindSafe for NodeTransportStartup
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