pub struct Sandbox {
pub pails: Pails,
pub td: TempDir,
}
Fields§
§pails: Pails
§td: TempDir
Implementations§
source§impl Sandbox
impl Sandbox
pub fn proxy(&mut self, name: &str) -> (SocketAddr, UnboundedReceiver<String>)
pub fn packet_rx(&mut self, name: &str) -> Receiver<String>
pub fn server(&mut self, name: &str) -> (Receiver<String>, SocketAddr)
pub fn config_file(&mut self, name: &str) -> ConfigFile
pub fn socket(&self) -> (Socket, SocketAddr)
sourcepub fn client(&self) -> DualStackEpollSocket
pub fn client(&self) -> DualStackEpollSocket
Creates an ephemeral socket that can be used to send messages to sandbox pails
sourcepub async fn timeout<F>(&self, ms: u64, fut: F) -> F::Outputwhere
F: Future,
pub async fn timeout<F>(&self, ms: u64, fut: F) -> F::Outputwhere
F: Future,
Runs a future, expecting it complete before the specified timeout
pub async fn maybe_timeout<F>(&self, ms: u64, fut: F) -> Option<F::Output>where
F: Future,
Auto Trait Implementations§
impl !RefUnwindSafe for Sandbox
impl Send for Sandbox
impl Sync for Sandbox
impl Unpin for Sandbox
impl !UnwindSafe for Sandbox
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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§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 moresource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request