pub trait GenericProject {
    // Required methods
    fn change_url(&self, platform_id: PlatformId) -> Result<Url>;
    fn url_str(&self) -> String;
    fn url(&self) -> Url;
}
Expand description

Generic definition of an online Git project.

Required Methods§

source

fn change_url(&self, platform_id: PlatformId) -> Result<Url>

source

fn url_str(&self) -> String

source

fn url(&self) -> Url

Trait Implementations§

source§

impl Display for dyn GenericProject

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Implementors§