We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f962bb6 commit 881ea91Copy full SHA for 881ea91
src/repository.rs
@@ -7,15 +7,15 @@ use std::path::PathBuf;
7
#[derive(Clone, Deserialize, Serialize, Debug)]
8
#[serde(rename_all = "camelCase")]
9
pub struct Repository {
10
- slug: String,
11
- id: u64,
12
- name: String,
13
- scm_id: String,
14
- state: String,
15
- status_message: String,
16
- forkable: bool,
17
- project: ProjectRef,
18
- public: bool,
+ pub slug: String,
+ pub id: u64,
+ pub name: String,
+ pub scm_id: String,
+ pub state: String,
+ pub status_message: String,
+ pub forkable: bool,
+ pub project: ProjectRef,
+ pub public: bool,
19
}
20
21
impl fmt::Display for Repository {
0 commit comments