#[repr(C, packed(4))]pub struct MovieTrackingPlaneTrack {
pub next: Pointer<MovieTrackingPlaneTrack>,
pub prev: Pointer<MovieTrackingPlaneTrack>,
pub name: [i8; 64],
pub point_tracks: Pointer<Pointer<MovieTrackingTrack>>,
pub point_tracksnr: i32,
pub _pad: [i8; 4],
pub markers: Pointer<MovieTrackingPlaneMarker>,
pub markersnr: i32,
pub flag: i32,
pub image: Pointer<Image>,
pub image_opacity: f32,
pub last_marker: i32,
}Fields§
§next: Pointer<MovieTrackingPlaneTrack>§prev: Pointer<MovieTrackingPlaneTrack>§name: [i8; 64]§point_tracks: Pointer<Pointer<MovieTrackingTrack>>§point_tracksnr: i32§_pad: [i8; 4]§markers: Pointer<MovieTrackingPlaneMarker>§markersnr: i32§flag: i32§image: Pointer<Image>§image_opacity: f32§last_marker: i32Trait Implementations§
Source§impl GeneratedBlendStruct for MovieTrackingPlaneTrack
impl GeneratedBlendStruct for MovieTrackingPlaneTrack
const BLEND_VERSION: Version
const BLEND_POINTER_SIZE: usize = 8usize
const BLEND_ENDIANNESS: Endianness = Endianness::Little
const STRUCT_NAME: &'static str = "MovieTrackingPlaneTrack"
const STRUCT_INDEX: usize = 684usize
const STRUCT_TYPE_INDEX: usize = 826usize
const IS_SYNTHETIC: bool = false
impl PointerTarget<MovieTrackingPlaneTrack> for MovieTrackingPlaneTrack
Auto Trait Implementations§
impl Freeze for MovieTrackingPlaneTrack
impl RefUnwindSafe for MovieTrackingPlaneTrack
impl Send for MovieTrackingPlaneTrack
impl Sync for MovieTrackingPlaneTrack
impl Unpin for MovieTrackingPlaneTrack
impl UnwindSafe for MovieTrackingPlaneTrack
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