#[repr(C)]pub struct candidateST {
pub from: *mut nodeT,
pub to: *mut nodeT,
pub violation: c_long,
pub arcrow: c_int,
pub arccol: c_int,
pub arcdir: c_schar,
}Expand description
arc candidate data structure
Fields§
§from: *mut nodeT§to: *mut nodeT§violation: c_longendpoints of candidate arc
arcrow: c_intmagnitude of arc violation
arccol: c_intmagnitude of arc violation
arcdir: c_scharindexes into arc arrays
Trait Implementations§
Source§impl Clone for candidateST
impl Clone for candidateST
Source§fn clone(&self) -> candidateST
fn clone(&self) -> candidateST
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 candidateST
impl Debug for candidateST
impl Copy for candidateST
Auto Trait Implementations§
impl Freeze for candidateST
impl RefUnwindSafe for candidateST
impl !Send for candidateST
impl !Sync for candidateST
impl Unpin for candidateST
impl UnwindSafe for candidateST
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