#[repr(C, packed(4))]pub struct TimeMarker {
pub next: Pointer<TimeMarker>,
pub prev: Pointer<TimeMarker>,
pub frame: i32,
pub name: [i8; 64],
pub flag: i32,
pub camera: Pointer<Object>,
pub prop: Pointer<IDProperty>,
}
Fields§
§next: Pointer<TimeMarker>
§prev: Pointer<TimeMarker>
§frame: i32
§name: [i8; 64]
§flag: i32
§camera: Pointer<Object>
§prop: Pointer<IDProperty>
Trait Implementations§
Source§impl DoubleLinked<Pointer<TimeMarker>> for TimeMarker
impl DoubleLinked<Pointer<TimeMarker>> for TimeMarker
Source§impl GeneratedBlendStruct for TimeMarker
impl GeneratedBlendStruct for TimeMarker
const BLEND_VERSION: Version
const BLEND_POINTER_SIZE: usize = 8usize
const BLEND_ENDIANNESS: Endianness = Endianness::Little
const STRUCT_NAME: &'static str = "TimeMarker"
const STRUCT_INDEX: usize = 194usize
const STRUCT_TYPE_INDEX: usize = 278usize
const IS_SYNTHETIC: bool = false
impl PointerTarget<TimeMarker> for TimeMarker
Auto Trait Implementations§
impl Freeze for TimeMarker
impl RefUnwindSafe for TimeMarker
impl Send for TimeMarker
impl Sync for TimeMarker
impl Unpin for TimeMarker
impl UnwindSafe for TimeMarker
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