forked from kemitix/git-next
14 lines
201 B
Rust
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"
|
|
);
|