[][src]Struct the_process_foundry::base::application::AppDescription

pub struct AppDescription {
    name: String,
    handles_versions: Option<VersionReq>,
    aliases: Option<Vec<String>>,
    search_paths: Option<Vec<String>>,
}

General information about the external application handled by this particular module

Fields

name: String

The name the external application is known by

handles_versions: Option<VersionReq>

The versions of the external app that are handled by this App

aliases: Option<Vec<String>>

Names that this app might also be known as

Examples: postgres may also be known as pg or postgresql

search_paths: Option<Vec<String>>

Some standard paths to look for information

Implementations

impl AppDescription[src]

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

Use the description to create a query to find running instances of this app

Trait Implementations

impl Clone for AppDescription[src]

impl Debug for AppDescription[src]

impl Default for AppDescription[src]

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

impl Display for AppDescription[src]

impl Eq for AppDescription[src]

impl Hash for AppDescription[src]

impl Ord for AppDescription[src]

impl PartialEq<AppDescription> for AppDescription[src]

impl PartialOrd<AppDescription> for AppDescription[src]

impl Serialize for AppDescription[src]

impl StructuralEq for AppDescription[src]

impl StructuralPartialEq for AppDescription[src]

Auto Trait Implementations

impl RefUnwindSafe for AppDescription

impl Send for AppDescription

impl Sync for AppDescription

impl Unpin for AppDescription

impl UnwindSafe for AppDescription

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> ToString for T where
    T: Display + ?Sized
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,