#[repr(C)]pub struct sd_image_t {
pub width: u32,
pub height: u32,
pub channel: u32,
pub data: *mut u8,
}
Fields§
§width: u32
§height: u32
§channel: u32
§data: *mut u8
Trait Implementations§
Source§impl Clone for sd_image_t
impl Clone for sd_image_t
Source§fn clone(&self) -> sd_image_t
fn clone(&self) -> sd_image_t
Returns a duplicate 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 sd_image_t
impl Debug for sd_image_t
impl Copy for sd_image_t
Auto Trait Implementations§
impl Freeze for sd_image_t
impl RefUnwindSafe for sd_image_t
impl !Send for sd_image_t
impl !Sync for sd_image_t
impl Unpin for sd_image_t
impl UnwindSafe for sd_image_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