git-next/crates/git/src/git_remote.rs

20 lines
486 B
Rust
Raw Normal View History

use git_next_config::{Hostname, RepoPath};
2024-05-14 16:28:17 +01:00
#[derive(Clone, Debug, PartialEq, Eq, derive_more::Display)]
#[display("{}:{}", host, repo_path)]
pub struct GitRemote {
host: Hostname,
repo_path: RepoPath,
}
impl GitRemote {
pub const fn new(host: Hostname, repo_path: RepoPath) -> Self {
Self { host, repo_path }
}
pub const fn host(&self) -> &Hostname {
&self.host
}
pub const fn repo_path(&self) -> &RepoPath {
&self.repo_path
}
}