pub struct Platform<'a, 's> {
pub store: &'s Store,
pub name: &'a FullNameRef,
pub buf: Vec<u8>,
}
Expand description
A platform to store a buffer to hold ref log lines for iteration.
Fields§
§store: &'s Store
The store containing the reflogs
name: &'a FullNameRef
The full name of the reference whose reflog to retrieve.
buf: Vec<u8>
A reusable buffer for storing log lines read from disk.