GraphDrawConnectorsArgsT

Struct GraphDrawConnectorsArgsT 

Source
#[repr(C)]
pub struct GraphDrawConnectorsArgsT {
Show 17 fields pub prop_args: *mut PropertiesUiArgsT, pub graph_id: TtIdT, pub connectors: *mut GraphNodeConnectorsT, pub in_connected: u32, pub out_connected: u32, pub item_rect: RectT, pub graph_scale: f32, pub property_panel_mode: bool, pub show_removed_inherited: bool, pub _padding_452: [c_char; 2], pub expanded: *mut SetT, pub graph: *mut GraphO, pub node_id: TtIdT, pub node_prototype_relation: u32, pub node_idx: u32, pub draw_in_connector_label_and_property: Option<unsafe extern "C" fn(graph: *mut GraphO, node_idx: u32, connector: *mut GraphConnectorT, editable: bool, r: RectT, args: *mut PropertiesUiArgsT) -> RectT>, pub draw_out_connector_label: Option<unsafe extern "C" fn(graph: *mut GraphO, connector: *mut GraphConnectorT, editable: bool, r: RectT, args: *mut PropertiesUiArgsT, alignment: u32) -> RectT>,
}

Fields§

§prop_args: *mut PropertiesUiArgsT§graph_id: TtIdT§connectors: *mut GraphNodeConnectorsT§in_connected: u32§out_connected: u32§item_rect: RectT§graph_scale: f32§property_panel_mode: bool§show_removed_inherited: bool§_padding_452: [c_char; 2]§expanded: *mut SetT§graph: *mut GraphO§node_id: TtIdT§node_prototype_relation: u32§node_idx: u32§draw_in_connector_label_and_property: Option<unsafe extern "C" fn(graph: *mut GraphO, node_idx: u32, connector: *mut GraphConnectorT, editable: bool, r: RectT, args: *mut PropertiesUiArgsT) -> RectT>§draw_out_connector_label: Option<unsafe extern "C" fn(graph: *mut GraphO, connector: *mut GraphConnectorT, editable: bool, r: RectT, args: *mut PropertiesUiArgsT, alignment: u32) -> RectT>

Trait Implementations§

Source§

impl Default for GraphDrawConnectorsArgsT

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

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.