We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48c087c commit fdf65eeCopy full SHA for fdf65ee
src/server/github.rs
@@ -189,12 +189,16 @@ pub struct Issue {
189
pub number: i32,
190
pub url: String,
191
pub html_url: String,
192
+ // used in some targets
193
+ #[allow(unused)]
194
pub labels: Vec<Label>,
195
pub pull_request: Option<PullRequest>,
196
}
197
198
#[derive(Deserialize)]
199
pub struct PullRequest {
200
201
202
203
204
@@ -231,6 +235,8 @@ pub struct Team {
231
235
232
236
233
237
pub struct Commit {
238
239
234
240
pub sha: String,
241
pub parents: Vec<CommitParent>,
242
0 commit comments