pub trait Project {
    fn name(&self) -> String;
    fn namespace(&self) -> Option<String>;
    fn ssh_url(&self) -> String;
    fn http_url(&self) -> String;
    fn private(&self) -> bool;

    fn into_repo_config(
        self,
        provider_name: &str,
        worktree_setup: bool,
        force_ssh: bool
    ) -> Repo
    where
        Self: Sized
, { ... } }

Required Methods

Provided Methods

Implementors