#[repr(C)]pub struct ASS_Image {
pub w: i32,
pub h: i32,
pub stride: i32,
pub bitmap: *mut u8,
pub color: u32,
pub dst_x: i32,
pub dst_y: i32,
pub next: *mut ASS_Image,
pub type_: i32,
}Fields§
§w: i32§h: i32§stride: i32§bitmap: *mut u8§color: u32§dst_x: i32§dst_y: i32§next: *mut ASS_Image§type_: i32Auto Trait Implementations§
impl Freeze for ASS_Image
impl RefUnwindSafe for ASS_Image
impl !Send for ASS_Image
impl !Sync for ASS_Image
impl Unpin for ASS_Image
impl UnsafeUnpin for ASS_Image
impl UnwindSafe for ASS_Image
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