pub struct JsonTexture {
pub dataBufferId: i32,
pub format: u32,
pub height: u32,
pub maxLod: f32,
pub minLod: f32,
pub name: String,
pub number_of_images: u32,
pub sourcePath: String,
pub width: u32,
}Fields§
§dataBufferId: i32§format: u32§height: u32§maxLod: f32§minLod: f32§name: String§number_of_images: u32§sourcePath: String§width: u32Trait Implementations§
Source§impl Clone for JsonTexture
impl Clone for JsonTexture
Source§fn clone(&self) -> JsonTexture
fn clone(&self) -> JsonTexture
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 moreSource§impl Debug for JsonTexture
impl Debug for JsonTexture
Source§impl<'de> Deserialize<'de> for JsonTexture
impl<'de> Deserialize<'de> for JsonTexture
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for JsonTexture
impl RefUnwindSafe for JsonTexture
impl Send for JsonTexture
impl Sync for JsonTexture
impl Unpin for JsonTexture
impl UnsafeUnpin for JsonTexture
impl UnwindSafe for JsonTexture
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