Trait GenericProject

Source
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§