Struct neko::dynamic::Compositer [] [src]

pub struct Compositer { /* fields omitted */ }

The struct Compositer is a heap of a double tuple of a dynamic libraries and a priority order.

Methods

impl Compositer
[src]

The constructor new returns a Compositer prepared with the library root.

The accessor method get_git returns the git sub-directory.

The accessor method get_lib returns the lib sub-directory.

The accessor method git_with_lib returns a couple of git and lib sub-repositories.

The accessor method get_manifest returns a dictionary. @repository: $HOME/.neko/git/arukana@libnya.

The method mount adds a new library to the heap's compositer. @ libraryname: arukana@libnya. @ priority: Some(-1) or None for zero by default.

The method unmount removes library from the queue. @ libraryname: arukana@libnya.

The method build makes and adds a dynamic library to SPEC_MANIFEST's destination. @ source: $HOME/.neko/git/Arukana@libnya. @ sub: arukana@libnya.

The method dependency lists the dependencies from repository dynamic library and install. @ source: $HOME/.neko/git/Arukana@libnya.

The methodd install clones and makes a dynamic library from repository and recursive call the dependencies. @ repo: https://github.com/Arukana/libnya.git.

The method update hard-resets the master branch to last commit. @ libraryname: arukana@libnya.

The method uninstall removes library from the filesystem with the source. @libraryname: arukana@libnya.

The general method call according to the state will run the evenement functions by library group.

The general method call according to the state will run the evenement functions by library group.

Trait Implementations

impl Debug for Compositer
[src]

Formats the value using the given formatter.

impl<'a> IntoIterator for &'a Compositer
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

impl Default for Compositer
[src]

A trait for giving a type a useful default value.

The constructor default returns a empty Compositer.