Repository

Trait Repository 

Source
pub trait Repository: Source {
    // Required methods
    fn repository(&self) -> &str;
    fn tag_pattern(&self) -> Option<&str>;
}
Expand description

The source of a binary.

Required Methods§

Source

fn repository(&self) -> &str

The repository to be used.

Source

fn tag_pattern(&self) -> Option<&str>

If applicable, a pattern to be used to determine applicable releases along with subcomponents from a release tag - e.g. polkadot-{version}.

Implementors§