Make Runtime fields nonpublic
This commit is contained in:
parent
57fbeb54e7
commit
464a9c4e4e
1 changed files with 3 additions and 3 deletions
|
@ -21,9 +21,9 @@ impl<'a> Person<'a> {
|
||||||
}
|
}
|
||||||
|
|
||||||
struct Runtime<'a> {
|
struct Runtime<'a> {
|
||||||
pub repository: Option<Repository>,
|
repository: Option<Repository>,
|
||||||
pub author: Option<Person<'a>>,
|
author: Option<Person<'a>>,
|
||||||
pub committer: Option<Person<'a>>,
|
committer: Option<Person<'a>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> Runtime<'a> {
|
impl<'a> Runtime<'a> {
|
||||||
|
|
Loading…
Reference in a new issue