/// The name of a Branch #[derive(Clone, Debug, Hash, PartialEq, Eq, derive_more::Display)] pub struct BranchName(String); impl BranchName { pub fn new(str: impl Into) -> Self { Self(str.into()) } }