#[repr(C, packed(4))]pub struct KeyingSet {
pub next: Pointer<KeyingSet>,
pub prev: Pointer<KeyingSet>,
pub paths: ListBase,
pub idname: [i8; 64],
pub name: [i8; 64],
pub description: [i8; 240],
pub typeinfo: [i8; 64],
pub active_path: i32,
pub flag: i16,
pub keyingflag: i16,
pub keyingoverride: i16,
pub _pad: [i8; 6],
}
Fields§
§next: Pointer<KeyingSet>
§prev: Pointer<KeyingSet>
§paths: ListBase
§idname: [i8; 64]
§name: [i8; 64]
§description: [i8; 240]
§typeinfo: [i8; 64]
§active_path: i32
§flag: i16
§keyingflag: i16
§keyingoverride: i16
§_pad: [i8; 6]
Trait Implementations§
Source§impl GeneratedBlendStruct for KeyingSet
impl GeneratedBlendStruct for KeyingSet
const BLEND_VERSION: Version
const BLEND_POINTER_SIZE: usize = 8usize
const BLEND_ENDIANNESS: Endianness = Endianness::Little
const STRUCT_NAME: &'static str = "KeyingSet"
const STRUCT_INDEX: usize = 656usize
const STRUCT_TYPE_INDEX: usize = 804usize
const IS_SYNTHETIC: bool = false
impl PointerTarget<KeyingSet> for KeyingSet
Auto Trait Implementations§
impl Freeze for KeyingSet
impl RefUnwindSafe for KeyingSet
impl Send for KeyingSet
impl Sync for KeyingSet
impl Unpin for KeyingSet
impl UnwindSafe for KeyingSet
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