Skip to main content

IntoProcessSpec

Trait IntoProcessSpec 

Source
pub trait IntoProcessSpec<'a, D>
where D: Deploy<'a> + ?Sized,
{ type ProcessSpec: ProcessSpec<'a, D>; // Required method fn into_process_spec(self) -> Self::ProcessSpec; }
Available on crate feature build only.

Required Associated Types§

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl IntoProcessSpec<'_, HydroDeploy> for Arc<dyn Host>

Available on crate feature deploy only.
Source§

type ProcessSpec = TrybuildHost

Available on crate feature build only.
Source§

fn into_process_spec(self) -> TrybuildHost

Available on crate feature build only.
Source§

impl<H: Host + 'static> IntoProcessSpec<'_, HydroDeploy> for Arc<H>

Available on crate feature deploy only.
Source§

type ProcessSpec = TrybuildHost

Available on crate feature build only.
Source§

fn into_process_spec(self) -> TrybuildHost

Available on crate feature build only.

Implementors§

Source§

impl<'a, D, T> IntoProcessSpec<'a, D> for T
where D: Deploy<'a> + ?Sized, T: ProcessSpec<'a, D>,