#[repr(u8)]pub enum GraphEventType {
NodeAddition = 0,
NodeRemoval = 1,
NodeRestoration = 2,
EdgeAddition = 3,
EdgeRemoval = 4,
EdgeWeightUpdate = 5,
EdgeWeightIncrement = 6,
TimeStep = 7,
}Variants§
NodeAddition = 0
NodeRemoval = 1
NodeRestoration = 2
EdgeAddition = 3
EdgeRemoval = 4
EdgeWeightUpdate = 5
EdgeWeightIncrement = 6
TimeStep = 7
Trait Implementations§
Source§impl Clone for GraphEventType
impl Clone for GraphEventType
Source§fn clone(&self) -> GraphEventType
fn clone(&self) -> GraphEventType
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 moreSource§impl Debug for GraphEventType
impl Debug for GraphEventType
Source§impl From<u8> for GraphEventType
impl From<u8> for GraphEventType
Source§impl PartialEq for GraphEventType
impl PartialEq for GraphEventType
impl Copy for GraphEventType
impl Eq for GraphEventType
impl StructuralPartialEq for GraphEventType
Auto Trait Implementations§
impl Freeze for GraphEventType
impl RefUnwindSafe for GraphEventType
impl Send for GraphEventType
impl Sync for GraphEventType
impl Unpin for GraphEventType
impl UnwindSafe for GraphEventType
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