pub trait RemoteRepository {
// Required methods
fn remote(&self, remote: &PublicKey) -> Result<Remote, Error>;
fn remotes(&self) -> Result<Remotes<Verified>, Error>;
fn remote_refs_at(&self) -> Result<Vec<RefsAt>, Error>;
}
Expand description
Access the remotes of a repository.