pub struct DefectEdge {
pub src: usize,
pub dst: usize,
pub weight: u32,
}Expand description
An edge in the defect graph.
Fields§
§src: usize§dst: usize§weight: u32Trait Implementations§
Source§impl Clone for DefectEdge
impl Clone for DefectEdge
Source§fn clone(&self) -> DefectEdge
fn clone(&self) -> DefectEdge
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 DefectEdge
impl RefUnwindSafe for DefectEdge
impl Send for DefectEdge
impl Sync for DefectEdge
impl Unpin for DefectEdge
impl UnsafeUnpin for DefectEdge
impl UnwindSafe for DefectEdge
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