pub struct DmeVertexData<S> {
pub per_vertex_lighting: Option<Vec<Vector4>>,
pub per_vertex_lighting_indices: Option<Vec<c_int>>,
pub vertex_paint_blend_params: Option<Vec<Vector4>>,
pub vertex_paint_blend_params_indices: Option<Vec<c_int>>,
pub flip_vcoordinates: bool,
pub joint_count: c_int,
pub vertex_format: Vec<S>,
}Fields§
§per_vertex_lighting: Option<Vec<Vector4>>§per_vertex_lighting_indices: Option<Vec<c_int>>§vertex_paint_blend_params: Option<Vec<Vector4>>§vertex_paint_blend_params_indices: Option<Vec<c_int>>§flip_vcoordinates: bool§joint_count: c_int§vertex_format: Vec<S>Trait Implementations§
Source§impl<S: Debug> Debug for DmeVertexData<S>
impl<S: Debug> Debug for DmeVertexData<S>
Source§impl<'de, S> Deserialize<'de> for DmeVertexData<S>where
S: Deserialize<'de>,
impl<'de, S> Deserialize<'de> for DmeVertexData<S>where
S: Deserialize<'de>,
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<S> Freeze for DmeVertexData<S>
impl<S> RefUnwindSafe for DmeVertexData<S>where
S: RefUnwindSafe,
impl<S> Send for DmeVertexData<S>where
S: Send,
impl<S> Sync for DmeVertexData<S>where
S: Sync,
impl<S> Unpin for DmeVertexData<S>where
S: Unpin,
impl<S> UnwindSafe for DmeVertexData<S>where
S: UnwindSafe,
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