git-next/crates/git/src/push.rs

27 lines
599 B
Rust
Raw Normal View History

use super::GitRef;
#[derive(Debug)]
pub enum Force {
No,
From(GitRef),
}
impl std::fmt::Display for Force {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::No => write!(f, "fast-foward"),
Self::From(from) => write!(f, "force-if-from:{}", from),
}
}
}
#[derive(Debug, derive_more::From, derive_more::Display)]
2024-05-14 16:28:17 +01:00
pub enum Error {
Open(Box<gix::open::Error>),
Fetch(super::fetch::Error),
Push,
Lock,
}
2024-05-14 16:28:17 +01:00
impl std::error::Error for Error {}
2024-05-14 16:28:17 +01:00
pub type Result = core::result::Result<(), Error>;