gix_ref/store/file/log/
mod.rs1use gix_object::bstr::BStr;
2
3pub use super::loose::reflog::{create_or_update, Error};
4
5pub mod iter;
7mod line;
8
9#[derive(PartialEq, Eq, Debug, Hash, Ord, PartialOrd, Clone, Copy)]
11#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
12pub struct LineRef<'a> {
13 pub previous_oid: &'a BStr,
15 pub new_oid: &'a BStr,
17 #[cfg_attr(feature = "serde", serde(borrow))]
19 pub signature: gix_actor::SignatureRef<'a>,
20 pub message: &'a BStr,
22}