[][src]Struct the_process_foundry::base::AppQuery

pub struct AppQuery {
    pub name: String,
    pub works_with: Option<VersionReq>,
    pub aliases: Option<Vec<String>>,
    pub search_paths: Option<Vec<String>>,
    pub find_all: bool,
}

This defines the a needed version of container/application needed for the module.

Fields

name: Stringworks_with: Option<VersionReq>aliases: Option<Vec<String>>search_paths: Option<Vec<String>>find_all: bool

Implementations

impl AppQuery[src]

pub fn new(name: String) -> AppQuery[src]

pub fn find_all(&self) -> AppQuery[src]

Trait Implementations

impl Clone for AppQuery[src]

impl Debug for AppQuery[src]

impl Default for AppQuery[src]

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

impl Serialize for AppQuery[src]

Auto Trait Implementations

impl RefUnwindSafe for AppQuery

impl Send for AppQuery

impl Sync for AppQuery

impl Unpin for AppQuery

impl UnwindSafe for AppQuery

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>,