pub enum GraphMlTopology {
Directed(Topology),
Undirected(UndirectedTopology),
}Variants§
Directed(Topology)
Undirected(UndirectedTopology)
Implementations§
Source§impl GraphMlTopology
impl GraphMlTopology
pub const fn is_directed(&self) -> bool
Trait Implementations§
Source§impl Clone for GraphMlTopology
impl Clone for GraphMlTopology
Source§fn clone(&self) -> GraphMlTopology
fn clone(&self) -> GraphMlTopology
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GraphMlTopology
impl Debug for GraphMlTopology
impl Eq for GraphMlTopology
Source§impl PartialEq for GraphMlTopology
impl PartialEq for GraphMlTopology
impl StructuralPartialEq for GraphMlTopology
Auto Trait Implementations§
impl Freeze for GraphMlTopology
impl RefUnwindSafe for GraphMlTopology
impl Send for GraphMlTopology
impl Sync for GraphMlTopology
impl Unpin for GraphMlTopology
impl UnsafeUnpin for GraphMlTopology
impl UnwindSafe for GraphMlTopology
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