git-next/crates/config/src/repo_branches.rs
Paul Campbell d70baa4350
All checks were successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
refactor(config): more derive_more replacing boilerplate
2024-05-15 07:55:05 +01:00

25 lines
576 B
Rust

use crate::BranchName;
/// Mapped from `.git-next.toml` file at `branches`
#[derive(
Clone, Debug, PartialEq, Eq, serde::Deserialize, derive_more::Constructor, derive_more::Display,
)]
#[display("{},{},{}", main, next, dev)]
pub struct RepoBranches {
main: String,
next: String,
dev: String,
}
impl RepoBranches {
pub fn main(&self) -> BranchName {
BranchName::new(&self.main)
}
pub fn next(&self) -> BranchName {
BranchName::new(&self.next)
}
pub fn dev(&self) -> BranchName {
BranchName::new(&self.dev)
}
}