pub struct LaunchedLocalhostBinary { /* private fields */ }
Implementations§
source§impl LaunchedLocalhostBinary
impl LaunchedLocalhostBinary
pub fn new(child: Child, id: String, tracing: Option<TracingOptions>) -> Self
Trait Implementations§
source§impl Drop for LaunchedLocalhostBinary
impl Drop for LaunchedLocalhostBinary
source§impl LaunchedBinary for LaunchedLocalhostBinary
impl LaunchedBinary for LaunchedLocalhostBinary
fn stdin(&self) -> UnboundedSender<String>
source§fn deploy_stdout(&self) -> Receiver<String>
fn deploy_stdout(&self) -> Receiver<String>
Provides a oneshot channel to handshake with the binary,
with the guarantee that as long as deploy is holding on
to a handle, none of the messages will also be broadcast
to the user-facing
LaunchedBinary::stdout
channel.fn stdout(&self) -> UnboundedReceiver<String>
fn stderr(&self) -> UnboundedReceiver<String>
fn exit_code(&self) -> Option<i32>
Auto Trait Implementations§
impl !Freeze for LaunchedLocalhostBinary
impl !RefUnwindSafe for LaunchedLocalhostBinary
impl Send for LaunchedLocalhostBinary
impl Sync for LaunchedLocalhostBinary
impl Unpin for LaunchedLocalhostBinary
impl !UnwindSafe for LaunchedLocalhostBinary
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> 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