#[repr(C, packed(4))]pub struct bNodeStack {
pub vec: [f32; 4],
pub min: f32,
pub max: f32,
pub data: Pointer<Void>,
pub hasinput: i16,
pub hasoutput: i16,
pub datatype: i16,
pub sockettype: i16,
pub is_copy: i16,
pub external: i16,
pub _pad: [i8; 4],
}Fields§
§vec: [f32; 4]§min: f32§max: f32§data: Pointer<Void>§hasinput: i16§hasoutput: i16§datatype: i16§sockettype: i16§is_copy: i16§external: i16§_pad: [i8; 4]Trait Implementations§
Source§impl GeneratedBlendStruct for bNodeStack
impl GeneratedBlendStruct for bNodeStack
const BLEND_VERSION: Version
const BLEND_POINTER_SIZE: usize = 8usize
const BLEND_ENDIANNESS: Endianness = Endianness::Little
const STRUCT_NAME: &'static str = "bNodeStack"
const STRUCT_INDEX: usize = 406usize
const STRUCT_TYPE_INDEX: usize = 537usize
const IS_SYNTHETIC: bool = false
impl PointerTarget<bNodeStack> for bNodeStack
Auto Trait Implementations§
impl Freeze for bNodeStack
impl RefUnwindSafe for bNodeStack
impl Send for bNodeStack
impl Sync for bNodeStack
impl Unpin for bNodeStack
impl UnwindSafe for bNodeStack
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