Replace crate visibility identifier with pub(crate)

Result of running:

find src -name *.rs -exec sed -i 's/crate /pub(crate) /g' {} \;
This commit is contained in:
est31
2019-08-29 13:08:28 +02:00
parent 6638fe4ab3
commit c87fa14fc8
35 changed files with 339 additions and 339 deletions

View File

@ -14,7 +14,7 @@ pub struct EntriesView {
}
impl EntriesView {
crate fn from_value(value: &Value) -> EntriesView {
pub(crate) fn from_value(value: &Value) -> EntriesView {
let descs = value.data_descriptors();
let mut entries = vec![];