#[repr(C)]pub struct AVSubtitleRect {
pub x: i32,
pub y: i32,
pub w: i32,
pub h: i32,
pub nb_colors: i32,
pub data: [*mut u8; 4],
pub linesize: [i32; 4],
pub flags: i32,
pub type_: u32,
pub text: *mut i8,
pub ass: *mut i8,
}Fields§
§x: i32§y: i32§w: i32§h: i32§nb_colors: i32§data: [*mut u8; 4]§linesize: [i32; 4]§flags: i32§type_: u32§text: *mut i8§ass: *mut i8Trait Implementations§
Source§impl Clone for AVSubtitleRect
impl Clone for AVSubtitleRect
Source§fn clone(&self) -> AVSubtitleRect
fn clone(&self) -> AVSubtitleRect
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AVSubtitleRect
Auto Trait Implementations§
impl !Send for AVSubtitleRect
impl !Sync for AVSubtitleRect
impl Freeze for AVSubtitleRect
impl RefUnwindSafe for AVSubtitleRect
impl Unpin for AVSubtitleRect
impl UnsafeUnpin 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