codec/context: implement DerefMut
This commit is contained in:
parent
deb08c60a0
commit
007947dde2
@ -1,4 +1,4 @@
|
|||||||
use std::ops::Deref;
|
use std::ops::{Deref, DerefMut};
|
||||||
use std::ptr;
|
use std::ptr;
|
||||||
|
|
||||||
use libc::c_int;
|
use libc::c_int;
|
||||||
@ -204,3 +204,9 @@ impl Deref for Opened {
|
|||||||
&self.0
|
&self.0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl DerefMut for Opened {
|
||||||
|
fn deref_mut(&mut self) -> &mut<Self as Deref>::Target {
|
||||||
|
&mut self.0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user