@@ -67,21 +67,21 @@ pub trait Connection: Send + Sync {
67
67
krate : & str ,
68
68
value : Duration ,
69
69
) ;
70
- // Returns vector of bootstrap build times for the given artifacts. The kth
71
- // element is the minimum build time for the kth artifact in `aids`, across
72
- // all collections for the artifact, or none if there is no bootstrap data
73
- // for that artifact (for example, because the rustc benchmark wasn't
74
- // executed for that artifact).
70
+ /// Returns vector of bootstrap build times for the given artifacts. The kth
71
+ /// element is the minimum build time for the kth artifact in `aids`, across
72
+ /// all collections for the artifact, or none if there is no bootstrap data
73
+ /// for that artifact (for example, because the rustc benchmark wasn't
74
+ /// executed for that artifact).
75
75
async fn get_bootstrap ( & self , aids : & [ ArtifactIdNumber ] ) -> Vec < Option < Duration > > ;
76
- // Returns map from rustc crate name to vector of build times for that crate
77
- // for the given artifacts. Within a crate's corresponding vector, the kth
78
- // element is the minimum build time for the kth artifact in `aids`, across
79
- // all collections for the artifact, or none if there is no data for that
80
- // artifact / crate combination (for example, because that rustc crate
81
- // wasn't present when building rustc with that artifact, or because the
82
- // rustc benchmark wasn't executed for that artifact). A crate will not be
83
- // included as a key in the map unless at least one artifact in `aids` has a
84
- // build time for it.
76
+ /// Returns map from rustc crate name to vector of build times for that crate
77
+ /// for the given artifacts. Within a crate's corresponding vector, the kth
78
+ /// element is the minimum build time for the kth artifact in `aids`, across
79
+ /// all collections for the artifact, or none if there is no data for that
80
+ /// artifact / crate combination (for example, because that rustc crate
81
+ /// wasn't present when building rustc with that artifact, or because the
82
+ /// rustc benchmark wasn't executed for that artifact). A crate will not be
83
+ /// included as a key in the map unless at least one artifact in `aids` has a
84
+ /// build time for it.
85
85
async fn get_bootstrap_by_crate (
86
86
& self ,
87
87
aids : & [ ArtifactIdNumber ] ,
0 commit comments