Agnodeinfo_t

Struct Agnodeinfo_t 

Source
#[repr(C)]
pub struct Agnodeinfo_t {
Show 55 fields pub hdr: Agrec_t, pub shape: *mut shape_desc, pub shape_info: *mut c_void, pub coord: pointf, pub width: f64, pub height: f64, pub bb: boxf, pub ht: f64, pub lw: f64, pub rw: f64, pub label: *mut textlabel_t, pub xlabel: *mut textlabel_t, pub alg: *mut c_void, pub state: c_char, pub gui_state: c_uchar, pub clustnode: boolean, pub pinned: c_uchar, pub id: c_int, pub heapindex: c_int, pub hops: c_int, pub pos: *mut f64, pub dist: f64, pub showboxes: c_uchar, pub has_port: boolean, pub rep: *mut node_t, pub set: *mut node_t, pub node_type: c_char, pub mark: c_char, pub onstack: c_char, pub ranktype: c_char, pub weight_class: c_char, pub next: *mut node_t, pub prev: *mut node_t, pub in_: elist, pub out: elist, pub flat_out: elist, pub flat_in: elist, pub other: elist, pub clust: *mut graph_t, pub UF_size: c_int, pub UF_parent: *mut node_t, pub inleaf: *mut node_t, pub outleaf: *mut node_t, pub rank: c_int, pub order: c_int, pub mval: f64, pub save_in: elist, pub save_out: elist, pub tree_in: elist, pub tree_out: elist, pub par: *mut edge_t, pub low: c_int, pub lim: c_int, pub priority: c_int, pub pad: [f64; 1],
}

Fields§

§hdr: Agrec_t§shape: *mut shape_desc§shape_info: *mut c_void§coord: pointf§width: f64§height: f64§bb: boxf§ht: f64§lw: f64§rw: f64§label: *mut textlabel_t§xlabel: *mut textlabel_t§alg: *mut c_void§state: c_char§gui_state: c_uchar§clustnode: boolean§pinned: c_uchar§id: c_int§heapindex: c_int§hops: c_int§pos: *mut f64§dist: f64§showboxes: c_uchar§has_port: boolean§rep: *mut node_t§set: *mut node_t§node_type: c_char§mark: c_char§onstack: c_char§ranktype: c_char§weight_class: c_char§next: *mut node_t§prev: *mut node_t§in_: elist§out: elist§flat_out: elist§flat_in: elist§other: elist§clust: *mut graph_t§UF_size: c_int§UF_parent: *mut node_t§inleaf: *mut node_t§outleaf: *mut node_t§rank: c_int§order: c_int§mval: f64§save_in: elist§save_out: elist§tree_in: elist§tree_out: elist§par: *mut edge_t§low: c_int§lim: c_int§priority: c_int§pad: [f64; 1]

Trait Implementations§

Source§

impl Clone for Agnodeinfo_t

Source§

fn clone(&self) -> Agnodeinfo_t

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Agnodeinfo_t

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for Agnodeinfo_t

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.