About
Contact
QtCreator
KDevelop
Solarized
1
use
ffi
::*;
2
3
pub
trait
Ref
{
4
fn
as_ptr
(&self) ->
*
const
AVPacket
;
5
}
6
7
pub
trait
Mut
{
8
fn
as_mut_ptr
(&
mut
self) ->
*
mut
AVPacket
;
9
}
10