#[repr(C)]pub struct nodesuppST {
pub row: c_int,
pub col: c_int,
pub neighbornodes: *mut *mut nodeT,
pub outarcs: *mut *mut scndryarcT,
pub noutarcs: c_int,
}Expand description
supplementary data structure for secondary nodes
Fields§
§row: c_int§col: c_introw of node in primary network problem
neighbornodes: *mut *mut nodeTcol of node in primary network problem
outarcs: *mut *mut scndryarcTpointers to neighboring secondary nodes
noutarcs: c_intpointers to secondary arcs to neighbors
Trait Implementations§
Source§impl Clone for nodesuppST
impl Clone for nodesuppST
Source§fn clone(&self) -> nodesuppST
fn clone(&self) -> nodesuppST
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for nodesuppST
impl Debug for nodesuppST
impl Copy for nodesuppST
Auto Trait Implementations§
impl Freeze for nodesuppST
impl RefUnwindSafe for nodesuppST
impl !Send for nodesuppST
impl !Sync for nodesuppST
impl Unpin for nodesuppST
impl UnwindSafe for nodesuppST
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