1 2 3 4 5 6 7 8 9
use crate::snapshot::{Author, Commit, CommitInterner}; /// Result of collecting commits — includes deduplicated author list. #[non_exhaustive] pub struct CommitCollection { pub commits: Vec<Commit>, pub authors: Vec<Author>, pub interner: CommitInterner, }