pub trait DeployCrateWrapper {
// Required method
fn underlying(&self) -> Arc<RustCrateService>;
// Provided methods
fn stdout(&self) -> UnboundedReceiver<String> { ... }
fn stderr(&self) -> UnboundedReceiver<String> { ... }
fn stdout_filter(
&self,
prefix: impl Into<String>,
) -> UnboundedReceiver<String> { ... }
fn stderr_filter(
&self,
prefix: impl Into<String>,
) -> UnboundedReceiver<String> { ... }
fn tracing_results(&self) -> Option<TracingResults> { ... }
}Available on crate feature
deploy only.Required Methods§
fn underlying(&self) -> Arc<RustCrateService>
Provided Methods§
fn stdout(&self) -> UnboundedReceiver<String>
fn stderr(&self) -> UnboundedReceiver<String>
fn stdout_filter(&self, prefix: impl Into<String>) -> UnboundedReceiver<String>
fn stderr_filter(&self, prefix: impl Into<String>) -> UnboundedReceiver<String>
fn tracing_results(&self) -> Option<TracingResults>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.