ElementCountTable

Struct ElementCountTable 

Source
#[repr(C)]
pub struct ElementCountTable {
Show 35 fields pub parts: u32, pub deformers: u32, pub warp_deformers: u32, pub rotation_deformers: u32, pub art_meshes: u32, pub parameters: u32, pub part_keyforms: u32, pub warp_deformer_keyforms: u32, pub rotation_deformer_keyforms: u32, pub art_mesh_keyforms: u32, pub keyform_positions: u32, pub parameter_binding_indices: u32, pub keyform_bindings: u32, pub parameter_bindings: u32, pub keys: u32, pub uvs: u32, pub position_indices: u32, pub drawable_masks: u32, pub draw_order_groups: u32, pub draw_order_group_objects: u32, pub glue: u32, pub glue_info: u32, pub glue_keyforms: u32, pub keyform_multiply_colors: u32, pub keyform_screen_colors: u32, pub blend_shape_parameter_bindings: u32, pub blend_shape_keyform_bindings: u32, pub blend_shapes_warp_deformers: u32, pub blend_shapes_art_meshes: u32, pub blend_shape_constraint_indices: u32, pub blend_shape_constraints: u32, pub blend_shape_constraint_values: u32, pub blend_shapes_parts: u32, pub blend_shapes_rotation_deformers: u32, pub blend_shapes_glue: u32,
}

Fields§

§parts: u32

部件数量

§deformers: u32

变形器数量

§warp_deformers: u32

变形器扭曲数量

§rotation_deformers: u32

旋转变形器数量

§art_meshes: u32

艺术网格数量

§parameters: u32

参数数量

§part_keyforms: u32

部件关键形态数量

§warp_deformer_keyforms: u32

扭曲变形器关键形态数量

§rotation_deformer_keyforms: u32

旋转变形器关键形态数量

§art_mesh_keyforms: u32

艺术网格关键形态数量

§keyform_positions: u32

关键形态位置数量

§parameter_binding_indices: u32

参数绑定索引数量

§keyform_bindings: u32

关键形态绑定数量

§parameter_bindings: u32

参数绑定数量

§keys: u32

键数量

§uvs: u32

UV数量

§position_indices: u32

位置索引数量

§drawable_masks: u32

可绘制掩码数量

§draw_order_groups: u32

绘制顺序组数量

§draw_order_group_objects: u32

绘制顺序组对象数量

§glue: u32

粘合数量

§glue_info: u32

粘合信息数量

§glue_keyforms: u32

粘合关键形态数量

§keyform_multiply_colors: u32

关键形态颜色(乘法)数量

§keyform_screen_colors: u32

关键形态颜色(屏幕)数量(隐藏)

§blend_shape_parameter_bindings: u32

混合形状参数绑定数量

§blend_shape_keyform_bindings: u32

混合形状关键形态绑定数量

§blend_shapes_warp_deformers: u32

混合形状(扭曲变形器)数量

§blend_shapes_art_meshes: u32

混合形状(艺术网格)数量(隐藏)

§blend_shape_constraint_indices: u32

混合形状约束索引数量

§blend_shape_constraints: u32

混合形状约束数量

§blend_shape_constraint_values: u32

混合形状约束值数量

§blend_shapes_parts: u32

混合形状(部件)数量

§blend_shapes_rotation_deformers: u32

混合形状(旋转变形器)数量

§blend_shapes_glue: u32

混合形状(粘合)数量

Trait Implementations§

Source§

impl Clone for ElementCountTable

Source§

fn clone(&self) -> ElementCountTable

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ElementCountTable

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for ElementCountTable

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more