DeployCrateWrapper

Trait DeployCrateWrapper 

Source
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§

Provided Methods§

Source

fn stdout(&self) -> UnboundedReceiver<String>

Source

fn stderr(&self) -> UnboundedReceiver<String>

Source

fn stdout_filter(&self, prefix: impl Into<String>) -> UnboundedReceiver<String>

Source

fn stderr_filter(&self, prefix: impl Into<String>) -> UnboundedReceiver<String>

Source

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.

Implementors§