#[repr(C)]pub struct boundaryST {
pub node: [nodeT; 1],
pub neighborlist: *mut neighborT,
pub boundarylist: *mut *mut nodeT,
pub nneighbor: c_long,
pub nboundary: c_long,
}Expand description
boundary data structure
Fields§
§node: [nodeT; 1]§neighborlist: *mut neighborTground node pointed to by this boundary
boundarylist: *mut *mut nodeTlist of neighbors of common boundary
nneighbor: c_longlist of nodes covered by common boundary
nboundary: c_longnumber of neighbor nodes of boundary
Trait Implementations§
Source§impl Clone for boundaryST
impl Clone for boundaryST
Source§fn clone(&self) -> boundaryST
fn clone(&self) -> boundaryST
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 boundaryST
impl Debug for boundaryST
impl Copy for boundaryST
Auto Trait Implementations§
impl Freeze for boundaryST
impl RefUnwindSafe for boundaryST
impl !Send for boundaryST
impl !Sync for boundaryST
impl Unpin for boundaryST
impl UnwindSafe for boundaryST
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