pub struct VobSubFrame {
pub screen_width: u16,
pub screen_height: u16,
pub x: u16,
pub y: u16,
pub width: u16,
pub height: u16,
pub rgba: Vec<u8>,
}Expand description
A VobSub subtitle frame.
Fields§
§screen_width: u16§screen_height: u16§x: u16§y: u16§width: u16§height: u16§rgba: Vec<u8>Implementations§
Auto Trait Implementations§
impl Freeze for VobSubFrame
impl RefUnwindSafe for VobSubFrame
impl Send for VobSubFrame
impl Sync for VobSubFrame
impl Unpin for VobSubFrame
impl UnsafeUnpin for VobSubFrame
impl UnwindSafe for VobSubFrame
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