pub struct FullBipartite {
pub graph: Graph,
pub types: Vec<bool>,
}Expand description
Bundled return type of full_bipartite.
Fields§
§graph: GraphThe constructed graph.
types: Vec<bool>Per-vertex type: false = partition 1, true = partition 2.
Trait Implementations§
Source§impl Clone for FullBipartite
impl Clone for FullBipartite
Source§fn clone(&self) -> FullBipartite
fn clone(&self) -> FullBipartite
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 FullBipartite
impl !RefUnwindSafe for FullBipartite
impl Send for FullBipartite
impl !Sync for FullBipartite
impl Unpin for FullBipartite
impl UnsafeUnpin for FullBipartite
impl UnwindSafe for FullBipartite
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