git-next/crates/core/src/config/branch_name.rs
Paul Campbell 8c19680056 refactor: macros use a more common syntax
Parameters were separated by ':', but are now separated by ','.
2024-08-06 20:06:39 +01:00

14 lines
201 B
Rust

use derive_more::derive::Display;
use serde::Serialize;
use crate::newtype;
newtype!(
BranchName,
String,
Display,
Default,
Hash,
Serialize,
"The name of a Git branch"
);