pub struct Material {
pub identifier: String,
pub properties: HashMap<String, MaterialProperty>,
pub collision_flags: u32,
pub material_kind: u32,
pub fx: String,
}Fields§
§identifier: String§properties: HashMap<String, MaterialProperty>§collision_flags: u32§material_kind: u32§fx: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for Material
impl RefUnwindSafe for Material
impl Send for Material
impl Sync for Material
impl Unpin for Material
impl UnwindSafe for Material
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