Struct ffmpeg::ffi::AVSubtitleRect
source · #[repr(C)]pub struct AVSubtitleRect {
pub x: c_int,
pub y: c_int,
pub w: c_int,
pub h: c_int,
pub nb_colors: c_int,
pub data: [*mut u8; 4],
pub linesize: [c_int; 4],
pub type_: c_uint,
pub text: *mut c_char,
pub ass: *mut c_char,
pub flags: c_int,
}
Fields§
§x: c_int
§y: c_int
§w: c_int
§h: c_int
§nb_colors: c_int
§data: [*mut u8; 4]
§linesize: [c_int; 4]
§type_: c_uint
§text: *mut c_char
§ass: *mut c_char
§flags: c_int
Trait Implementations§
source§impl Clone for AVSubtitleRect
impl Clone for AVSubtitleRect
source§fn clone(&self) -> AVSubtitleRect
fn clone(&self) -> AVSubtitleRect
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 AVSubtitleRect
impl Debug for AVSubtitleRect
impl Copy for AVSubtitleRect
Auto Trait Implementations§
impl RefUnwindSafe for AVSubtitleRect
impl !Send for AVSubtitleRect
impl !Sync for AVSubtitleRect
impl Unpin for AVSubtitleRect
impl UnwindSafe for AVSubtitleRect
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