pub enum WalkInput {
NeighborEvent {
peer: String,
event: DiscoverEvent,
},
NeighborDone {
peer: String,
},
NeighborTimeout {
peer: String,
},
}Variants§
Trait Implementations§
impl StructuralPartialEq for WalkInput
Auto Trait Implementations§
impl Freeze for WalkInput
impl RefUnwindSafe for WalkInput
impl Send for WalkInput
impl Sync for WalkInput
impl Unpin for WalkInput
impl UnsafeUnpin for WalkInput
impl UnwindSafe for WalkInput
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