pub trait RemotePackage {
    fn package_name(&self) -> &str;
}
Expand description

Trait representing a remote package.

All remote packages support these methods.

Required methods

Get the package name according to the package itself.

Implementors