#[repr(C)]pub struct aiRustProperty {
pub name: *const c_char,
pub kind: aiRustPropertyKind,
pub int_value: c_int,
pub float_value: f32,
pub string_value: *const c_char,
pub matrix_value: *mut c_void,
}Fields§
§name: *const c_char§kind: aiRustPropertyKind§int_value: c_int§float_value: f32§string_value: *const c_char§matrix_value: *mut c_voidTrait Implementations§
Source§impl Clone for aiRustProperty
impl Clone for aiRustProperty
Source§fn clone(&self) -> aiRustProperty
fn clone(&self) -> aiRustProperty
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for aiRustProperty
impl Debug for aiRustProperty
Source§impl Default for aiRustProperty
impl Default for aiRustProperty
Source§impl PartialEq for aiRustProperty
impl PartialEq for aiRustProperty
impl Copy for aiRustProperty
impl StructuralPartialEq for aiRustProperty
Auto Trait Implementations§
impl Freeze for aiRustProperty
impl RefUnwindSafe for aiRustProperty
impl !Send for aiRustProperty
impl !Sync for aiRustProperty
impl Unpin for aiRustProperty
impl UnwindSafe for aiRustProperty
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