pub enum WaitFor {
Nothing,
LogMessage {
message: String,
stream: Stream,
},
}
👎Deprecated since 0.2.1: Testcontainers is no longer using microcrates, please upgrade to testcontainers version 0.8
Variants§
Nothing
👎Deprecated since 0.2.1: Testcontainers is no longer using microcrates, please upgrade to testcontainers version 0.8
LogMessage
👎Deprecated since 0.2.1: Testcontainers is no longer using microcrates, please upgrade to testcontainers version 0.8
Implementations§
Source§impl WaitFor
impl WaitFor
pub fn message_on_stdout<S: Into<String>>(message: S) -> WaitFor
👎Deprecated since 0.2.1: Testcontainers is no longer using microcrates, please upgrade to testcontainers version 0.8
pub fn message_on_stderr<S: Into<String>>(message: S) -> WaitFor
👎Deprecated since 0.2.1: Testcontainers is no longer using microcrates, please upgrade to testcontainers version 0.8
Trait Implementations§
impl StructuralPartialEq for WaitFor
Auto Trait Implementations§
impl Freeze for WaitFor
impl RefUnwindSafe for WaitFor
impl Send for WaitFor
impl Sync for WaitFor
impl Unpin for WaitFor
impl UnwindSafe for WaitFor
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