#[repr(C)]pub struct x264_nal_t {
pub i_ref_idc: c_int,
pub i_type: c_int,
pub b_long_startcode: c_int,
pub i_first_mb: c_int,
pub i_last_mb: c_int,
pub i_payload: c_int,
pub p_payload: *mut u8,
pub i_padding: c_int,
}Fields§
§i_ref_idc: c_int§i_type: c_int§b_long_startcode: c_int§i_first_mb: c_int§i_last_mb: c_int§i_payload: c_int§p_payload: *mut u8§i_padding: c_intTrait Implementations§
Source§impl Clone for x264_nal_t
impl Clone for x264_nal_t
Source§fn clone(&self) -> x264_nal_t
fn clone(&self) -> x264_nal_t
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for x264_nal_t
impl Debug for x264_nal_t
impl Copy for x264_nal_t
Auto Trait Implementations§
impl Freeze for x264_nal_t
impl RefUnwindSafe for x264_nal_t
impl !Send for x264_nal_t
impl !Sync for x264_nal_t
impl Unpin for x264_nal_t
impl UnwindSafe for x264_nal_t
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more