pub struct CandidateGraph {
pub n_events: usize,
pub outgoing: Vec<Vec<usize>>,
pub candidate_edges: Vec<CandidateEdge>,
}Fields§
§n_events: usize§outgoing: Vec<Vec<usize>>§candidate_edges: Vec<CandidateEdge>Trait Implementations§
Source§impl Clone for CandidateGraph
impl Clone for CandidateGraph
Source§fn clone(&self) -> CandidateGraph
fn clone(&self) -> CandidateGraph
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 CandidateGraph
impl RefUnwindSafe for CandidateGraph
impl Send for CandidateGraph
impl Sync for CandidateGraph
impl Unpin for CandidateGraph
impl UnsafeUnpin for CandidateGraph
impl UnwindSafe for CandidateGraph
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