2024-08-03 22:31:17 +01:00
|
|
|
use derive_more::derive::Display;
|
2024-07-21 13:44:44 +01:00
|
|
|
use serde::Serialize;
|
|
|
|
|
2024-08-06 07:43:28 +01:00
|
|
|
use crate::newtype;
|
|
|
|
|
2024-08-06 20:06:39 +01:00
|
|
|
newtype!(
|
|
|
|
BranchName,
|
|
|
|
String,
|
|
|
|
Display,
|
|
|
|
Default,
|
|
|
|
Hash,
|
|
|
|
Serialize,
|
|
|
|
"The name of a Git branch"
|
|
|
|
);
|