git-next-core 0.14.1

core for git-next, the trunk-based development manager
Documentation
use crate::config::{RepoBranches, RepoConfigSource};

/// Mapped from `.git-next.toml` file in target repo
/// Is also derived from the optional parameters in `git-next-server.toml` at
/// `forge.{forge}.repos.{repo}.(main|next|dev)`
#[derive(
    Clone,
    Hash,
    Debug,
    PartialEq,
    Eq,
    PartialOrd,
    Ord,
    serde::Deserialize,
    serde::Serialize,
    derive_more::Constructor,
    derive_more::Display,
    derive_with::With,
)]
#[display("{}", branches)]
pub struct RepoConfig {
    branches: RepoBranches,
    source: RepoConfigSource,
}
impl RepoConfig {
    /// Parses the TOML document into a `RepoConfig`.
    ///
    /// # Errors
    ///
    /// Will return `Err` if the TOML file is invalid or otherwise doesn't
    /// match a `RepoConfig`.
    pub fn parse(toml: &str) -> Result<Self, toml::de::Error> {
        toml::from_str(format!("source = \"Repo\"\n{toml}").as_str())
    }

    #[must_use]
    pub const fn branches(&self) -> &RepoBranches {
        &self.branches
    }

    #[must_use]
    pub const fn source(&self) -> RepoConfigSource {
        self.source
    }
}