pub struct RwTextureNative {Show 18 fields
pub platform_id: u32,
pub filter_mode: u8,
pub u_addressing: u8,
pub v_addressing: u8,
pub texture_name: String,
pub mask_name: String,
pub raster_format: u32,
pub d3d_format: String,
pub width: u16,
pub height: u16,
pub depth: u8,
pub mipmap_count: u8,
pub raster_type: u8,
pub alpha: bool,
pub cube_texture: bool,
pub auto_mip_maps: bool,
pub compressed: bool,
pub mipmaps: Vec<Vec<u8>>,
}Fields§
§platform_id: u32§filter_mode: u8§u_addressing: u8§v_addressing: u8§texture_name: String§mask_name: String§raster_format: u32§d3d_format: String§width: u16§height: u16§depth: u8§mipmap_count: u8§raster_type: u8§alpha: bool§cube_texture: bool§auto_mip_maps: bool§compressed: bool§mipmaps: Vec<Vec<u8>>Trait Implementations§
Source§impl Clone for RwTextureNative
impl Clone for RwTextureNative
Source§fn clone(&self) -> RwTextureNative
fn clone(&self) -> RwTextureNative
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 RwTextureNative
impl Debug for RwTextureNative
Source§impl PartialEq for RwTextureNative
impl PartialEq for RwTextureNative
Source§impl Serialize for RwTextureNative
impl Serialize for RwTextureNative
impl StructuralPartialEq for RwTextureNative
Auto Trait Implementations§
impl Freeze for RwTextureNative
impl RefUnwindSafe for RwTextureNative
impl Send for RwTextureNative
impl Sync for RwTextureNative
impl Unpin for RwTextureNative
impl UnwindSafe for RwTextureNative
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