#[repr(C, packed(4))]pub struct bNodeLink {
pub next: Pointer<bNodeLink>,
pub prev: Pointer<bNodeLink>,
pub fromnode: Pointer<bNode>,
pub tonode: Pointer<bNode>,
pub fromsock: Pointer<bNodeSocket>,
pub tosock: Pointer<bNodeSocket>,
pub flag: i32,
pub multi_input_socket_index: i32,
}Fields§
§next: Pointer<bNodeLink>§prev: Pointer<bNodeLink>§fromnode: Pointer<bNode>§tonode: Pointer<bNode>§fromsock: Pointer<bNodeSocket>§tosock: Pointer<bNodeSocket>§flag: i32§multi_input_socket_index: i32Trait Implementations§
Source§impl GeneratedBlendStruct for bNodeLink
impl GeneratedBlendStruct for bNodeLink
const BLEND_VERSION: Version
const BLEND_POINTER_SIZE: usize = 8usize
const BLEND_ENDIANNESS: Endianness = Endianness::Little
const STRUCT_NAME: &'static str = "bNodeLink"
const STRUCT_INDEX: usize = 410usize
const STRUCT_TYPE_INDEX: usize = 540usize
const IS_SYNTHETIC: bool = false
impl PointerTarget<bNodeLink> for bNodeLink
Auto Trait Implementations§
impl Freeze for bNodeLink
impl RefUnwindSafe for bNodeLink
impl Send for bNodeLink
impl Sync for bNodeLink
impl Unpin for bNodeLink
impl UnwindSafe for bNodeLink
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