[][src]Struct constellation_internal::msg::FabricRequest

pub struct FabricRequest<A, B> where
    A: FileOrVec,
    B: FileOrVec
{ pub resources: Resources, pub bind: Vec<SocketAddr>, pub args: Vec<OsString>, pub vars: Vec<(OsString, OsString)>, pub arg: A, pub binary: B, }

Fields

resources: Resources

The resources required for this process.

bind: Vec<SocketAddr>

The socket addresses required to bind to for this process.

args: Vec<OsString>

The command line arguments passed to the process.

vars: Vec<(OsString, OsString)>

The environment variables passed to the process.

arg: A

An extra argument passed to the process on a special file descriptor.

binary: B

The process to spawn.

Trait Implementations

impl<A: Debug, B: Debug> Debug for FabricRequest<A, B> where
    A: FileOrVec,
    B: FileOrVec
[src]

impl Serialize for FabricRequest<Vec<u8>, Vec<u8>>[src]

impl<'de, A, B> Deserialize<'de> for FabricRequest<A, B> where
    A: FileOrVec,
    B: FileOrVec
[src]

Auto Trait Implementations

impl<A, B> Sync for FabricRequest<A, B> where
    A: Sync,
    B: Sync

impl<A, B> Send for FabricRequest<A, B> where
    A: Send,
    B: Send

impl<A, B> Unpin for FabricRequest<A, B> where
    A: Unpin,
    B: Unpin

impl<A, B> RefUnwindSafe for FabricRequest<A, B> where
    A: RefUnwindSafe,
    B: RefUnwindSafe

impl<A, B> UnwindSafe for FabricRequest<A, B> where
    A: UnwindSafe,
    B: UnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]