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