pub struct ConnectivityGraph {
pub regions: Vec<u32>,
pub edges: Vec<(u32, u32)>,
}Expand description
Region connectivity information
Fields§
§regions: Vec<u32>§edges: Vec<(u32, u32)>Implementations§
Trait Implementations§
Source§impl Clone for ConnectivityGraph
impl Clone for ConnectivityGraph
Source§fn clone(&self) -> ConnectivityGraph
fn clone(&self) -> ConnectivityGraph
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 ConnectivityGraph
impl Debug for ConnectivityGraph
Auto Trait Implementations§
impl Freeze for ConnectivityGraph
impl RefUnwindSafe for ConnectivityGraph
impl Send for ConnectivityGraph
impl Sync for ConnectivityGraph
impl Unpin for ConnectivityGraph
impl UnwindSafe for ConnectivityGraph
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