[][src]Enum oceanpkg::Drop

pub enum Drop {
    App(App),
    Exe(Exe),
    Font(Font),
    Lib(Lib),
}

Defines an Ocean package, also known as a drop 💧.

Variants

App(App)

A package with a graphical interface.

Exe(Exe)

A package that can be executed; e.g. CLI tool or script.

Font(Font)

A package for a typeface with specific properties; e.g. bold, italic.

Lib(Lib)

A package for a library of a given language.

Methods

impl Drop[src]

pub fn query<S>(query: &Query<S>) -> Result<Self, ()> where
    S: AsRef<str>, 
[src]

pub fn kind(&self) -> Kind[src]

Returns the kind of drop.

pub fn metadata(&self) -> &Metadata[src]

Returns basic metadata for the drop.

Trait Implementations

impl Clone for Drop[src]

impl Debug for Drop[src]

impl From<App> for Drop[src]

impl From<Exe> for Drop[src]

impl From<Font> for Drop[src]

impl From<Lib> for Drop[src]

Auto Trait Implementations

impl RefUnwindSafe for Drop

impl Send for Drop

impl Sync for Drop

impl Unpin for Drop

impl UnwindSafe for Drop

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> 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 = !

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.