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