mutable signature

This commit is contained in:
NikVolf 2017-05-04 12:13:59 +03:00
parent 26450d4705
commit ce40e22ef3

View File

@ -266,7 +266,7 @@ impl ImportEntry {
pub fn external(&self) -> &External { &self.external } pub fn external(&self) -> &External { &self.external }
/// Local binidng of the import entry (mutable) /// Local binidng of the import entry (mutable)
pub fn external_mut(&mut self) -> &External { &mut self.external } pub fn external_mut(&mut self) -> &mut External { &mut self.external }
} }
impl Deserialize for ImportEntry { impl Deserialize for ImportEntry {