pub struct CandidateEdge {
pub src: usize,
pub dst: usize,
pub compatible: bool,
}Fields§
§src: usize§dst: usize§compatible: boolTrait Implementations§
Source§impl Clone for CandidateEdge
impl Clone for CandidateEdge
Source§fn clone(&self) -> CandidateEdge
fn clone(&self) -> CandidateEdge
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 moreAuto Trait Implementations§
impl Freeze for CandidateEdge
impl RefUnwindSafe for CandidateEdge
impl Send for CandidateEdge
impl Sync for CandidateEdge
impl Unpin for CandidateEdge
impl UnsafeUnpin for CandidateEdge
impl UnwindSafe for CandidateEdge
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