[][src]Struct the_process_foundry::applications::bash::FindAppQuery

pub struct FindAppQuery(AppQuery);

Configuration to look up an application in this container TODO: Add a macro to map all the functions to the parent AppQuery

Trait Implementations

impl ActionTrait for FindAppQuery[src]

type RESPONSE = ActionResult

fn run(&self, target: AppInstance) -> Result<Self::RESPONSE>[src]

Find the first app that matches the conditions of AppDefinition (name, version, path, etc) TODO: Convert this to reuse "Run"

impl Clone for FindAppQuery[src]

impl Debug for FindAppQuery[src]

impl<'de> Deserialize<'de> for FindAppQuery[src]

impl Serialize for FindAppQuery[src]

Auto Trait Implementations

impl RefUnwindSafe for FindAppQuery

impl Send for FindAppQuery

impl Sync for FindAppQuery

impl Unpin for FindAppQuery

impl UnwindSafe for FindAppQuery

Blanket Implementations

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

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

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

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

impl<T> DynClone for T where
    T: Clone
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,