#[repr(C, packed(4))]pub struct TransformOrientation {
pub next: Pointer<TransformOrientation>,
pub prev: Pointer<TransformOrientation>,
pub name: [i8; 64],
pub mat: [[f32; 3]; 3],
pub _pad: [i8; 4],
}
Fields§
§next: Pointer<TransformOrientation>
§prev: Pointer<TransformOrientation>
§name: [i8; 64]
§mat: [[f32; 3]; 3]
§_pad: [i8; 4]
Trait Implementations§
Source§impl GeneratedBlendStruct for TransformOrientation
impl GeneratedBlendStruct for TransformOrientation
const BLEND_VERSION: Version
const BLEND_POINTER_SIZE: usize = 8usize
const BLEND_ENDIANNESS: Endianness = Endianness::Little
const STRUCT_NAME: &'static str = "TransformOrientation"
const STRUCT_INDEX: usize = 306usize
const STRUCT_TYPE_INDEX: usize = 432usize
const IS_SYNTHETIC: bool = false
impl PointerTarget<TransformOrientation> for TransformOrientation
Auto Trait Implementations§
impl Freeze for TransformOrientation
impl RefUnwindSafe for TransformOrientation
impl Send for TransformOrientation
impl Sync for TransformOrientation
impl Unpin for TransformOrientation
impl UnwindSafe for TransformOrientation
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