pub struct Logs<'repo, A: 'repo, R> where
R: Borrow<Reference<'repo, A>>, { /* fields omitted */ }
Expand description
A platform to obtain iterators over reference logs.
Return a reverse iterator over reference logs, most recent to oldest.
This is a typical and efficient way of accessing logs as one is interested in the most recent ones first.
Return an iterator over reference logs, from oldest to newest.
The iterator is optimized for rewriting the processing or rewriting the entire log.
For accessing only the most recent entries, see iter_rev()
.
impl<'repo, A, R> !Send for Logs<'repo, A, R>
impl<'repo, A, R> !Sync for Logs<'repo, A, R>
impl<T> Any for T where
T: 'static + ?Sized,
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
The alignment of pointer.
The type for initializers.
Initializes a with the given initializer. Read more
Mutably dereferences the given pointer. Read more
Drops the object pointed to by the given pointer. Read more
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.
impl<V, T> VZip<V> for T where
V: MultiLane<T>,