#[repr(C, packed(4))]pub struct bMotionPath {
pub points: Pointer<bMotionPathVert>,
pub length: i32,
pub start_frame: i32,
pub end_frame: i32,
pub color: [f32; 3],
pub line_thickness: i32,
pub flag: i32,
pub points_vbo: Pointer<Nothing>,
pub batch_line: Pointer<Nothing>,
pub batch_points: Pointer<Nothing>,
pub _pad: Pointer<Void>,
}Fields§
§points: Pointer<bMotionPathVert>§length: i32§start_frame: i32§end_frame: i32§color: [f32; 3]§line_thickness: i32§flag: i32§points_vbo: Pointer<Nothing>§batch_line: Pointer<Nothing>§batch_points: Pointer<Nothing>§_pad: Pointer<Void>Trait Implementations§
Source§impl GeneratedBlendStruct for bMotionPath
impl GeneratedBlendStruct for bMotionPath
const BLEND_VERSION: Version
const BLEND_POINTER_SIZE: usize = 8usize
const BLEND_ENDIANNESS: Endianness = Endianness::Little
const STRUCT_NAME: &'static str = "bMotionPath"
const STRUCT_INDEX: usize = 358usize
const STRUCT_TYPE_INDEX: usize = 250usize
const IS_SYNTHETIC: bool = false
impl PointerTarget<bMotionPath> for bMotionPath
Auto Trait Implementations§
impl Freeze for bMotionPath
impl RefUnwindSafe for bMotionPath
impl Send for bMotionPath
impl Sync for bMotionPath
impl Unpin for bMotionPath
impl UnwindSafe for bMotionPath
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