pub enum Drop {
App(App),
Exe(Exe),
Font(Font),
Lib(Lib),
}
Expand description
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.
Implementationsยง
Trait Implementationsยง
Auto Trait Implementationsยง
impl Freeze for Drop
impl RefUnwindSafe for Drop
impl Send for Drop
impl Sync for Drop
impl Unpin for Drop
impl UnwindSafe for Drop
Blanket Implementationsยง
Sourceยงimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Sourceยงfn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more