Struct adjacency_matrix::StaticDirected
source · pub struct StaticDirected<V = (), E = ()> { /* private fields */ }
Implementations§
source§impl<V, E> StaticDirected<V, E>
impl<V, E> StaticDirected<V, E>
pub fn max_degree(&self) -> usize
pub fn min_degree(&self) -> usize
Trait Implementations§
source§impl<V: Clone, E: Clone> Clone for StaticDirected<V, E>
impl<V: Clone, E: Clone> Clone for StaticDirected<V, E>
source§fn clone(&self) -> StaticDirected<V, E>
fn clone(&self) -> StaticDirected<V, E>
Returns a copy 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<V, E> RefUnwindSafe for StaticDirected<V, E>where E: RefUnwindSafe, V: RefUnwindSafe,
impl<V, E> Send for StaticDirected<V, E>where E: Send, V: Send,
impl<V, E> Sync for StaticDirected<V, E>where E: Sync, V: Sync,
impl<V, E> Unpin for StaticDirected<V, E>where E: Unpin, V: Unpin,
impl<V, E> UnwindSafe for StaticDirected<V, E>where E: UnwindSafe, V: UnwindSafe,
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