bNodeSocket

Struct bNodeSocket 

Source
#[repr(C, packed(4))]
pub struct bNodeSocket {
Show 32 fields pub next: Pointer<bNodeSocket>, pub prev: Pointer<bNodeSocket>, pub prop: Pointer<IDProperty>, pub identifier: [i8; 64], pub name: [i8; 64], pub storage: Pointer<Void>, pub type_: i16, pub flag: i16, pub limit: i16, pub in_out: i16, pub typeinfo: Pointer<Nothing>, pub idname: [i8; 64], pub locx: f32, pub locy: f32, pub default_value: Pointer<Void>, pub stack_index: i16, pub stack_type: i16, pub display_shape: i8, pub attribute_domain: i8, pub total_inputs: i16, pub label: [i8; 64], pub description: [i8; 64], pub default_attribute_name: Pointer<i8>, pub cache: Pointer<Void>, pub own_index: i32, pub to_index: i32, pub groupsock: Pointer<bNodeSocket>, pub link: Pointer<bNodeLink>, pub ns: bNodeStack, pub declaration: Pointer<Nothing>, pub changed_flag: i32, pub _pad: [i8; 4],
}

Fields§

§next: Pointer<bNodeSocket>§prev: Pointer<bNodeSocket>§prop: Pointer<IDProperty>§identifier: [i8; 64]§name: [i8; 64]§storage: Pointer<Void>§type_: i16§flag: i16§limit: i16§in_out: i16§typeinfo: Pointer<Nothing>§idname: [i8; 64]§locx: f32§locy: f32§default_value: Pointer<Void>§stack_index: i16§stack_type: i16§display_shape: i8§attribute_domain: i8§total_inputs: i16§label: [i8; 64]§description: [i8; 64]§default_attribute_name: Pointer<i8>§cache: Pointer<Void>§own_index: i32§to_index: i32§groupsock: Pointer<bNodeSocket>§link: Pointer<bNodeLink>§ns: bNodeStack§declaration: Pointer<Nothing>§changed_flag: i32§_pad: [i8; 4]

Trait Implementations§

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.