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§
Sourcefn repository(&self) -> &str
fn repository(&self) -> &str
The repository to be used.
Sourcefn tag_pattern(&self) -> Option<&str>
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}
.