#[repr(C)]pub struct neighborST {
pub neighbor: *mut nodeT,
pub arcrow: c_int,
pub arccol: c_int,
pub arcdir: c_int,
}Expand description
boundary neighbor structure
Fields§
§neighbor: *mut nodeT§arcrow: c_intneighbor node pointer
arccol: c_introw of arc to neighbor
arcdir: c_intcol of arc to neighbor
Trait Implementations§
Source§impl Clone for neighborST
impl Clone for neighborST
Source§fn clone(&self) -> neighborST
fn clone(&self) -> neighborST
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 neighborST
impl Debug for neighborST
impl Copy for neighborST
Auto Trait Implementations§
impl Freeze for neighborST
impl RefUnwindSafe for neighborST
impl !Send for neighborST
impl !Sync for neighborST
impl Unpin for neighborST
impl UnwindSafe for neighborST
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