Fix: structure field dataDump
should have a snake case name such as data_dump
This commit is contained in:
parent
c8231e5c31
commit
930a7ecc3f
1 changed files with 2 additions and 2 deletions
|
@ -148,7 +148,7 @@ pub struct StorageBackendError {
|
|||
pub action: String, // The file system action in words
|
||||
pub desc: String, // A short description
|
||||
pub explanation: String, // A long, user friendly description
|
||||
pub dataDump: Option<String> // Data dump, if any
|
||||
pub data_dump: Option<String> // Data dump, if any
|
||||
}
|
||||
|
||||
impl StorageBackendError {
|
||||
|
@ -161,7 +161,7 @@ impl StorageBackendError {
|
|||
action: action,
|
||||
desc: desc,
|
||||
explanation: explan,
|
||||
dataDump: data,
|
||||
data_dump: data,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue