pub const fn branch() -> &'static str {
""
}
pub const fn commit() -> &'static str {
""
}
pub const fn merge() -> &'static str {
""
}
pub const fn pull_request() -> &'static str {
""
}
pub const fn compare() -> &'static str {
""
}
pub const fn stash() -> &'static str {
""
}
pub const fn tag() -> &'static str {
""
}
pub const fn remote() -> &'static str {
""
}
pub const fn added() -> &'static str {
""
}
pub const fn modified() -> &'static str {
""
}
pub const fn deleted() -> &'static str {
""
}
pub const fn renamed() -> &'static str {
""
}
pub const fn untracked() -> &'static str {
""
}
pub const fn ignored() -> &'static str {
""
}
pub const fn conflict() -> &'static str {
""
}
pub const fn staged() -> &'static str {
""
}
pub const fn unstaged() -> &'static str {
""
}
pub const fn ahead() -> &'static str {
""
}
pub const fn behind() -> &'static str {
""
}
pub const fn github() -> &'static str {
""
}
pub const fn gitlab() -> &'static str {
""
}
pub const fn bitbucket() -> &'static str {
""
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_git_icons() {
assert_eq!(branch(), "");
assert_eq!(commit(), "");
assert_eq!(github(), "");
}
}