pub struct Ran {
pub did: Vec<Did>,
}Expand description
What the whole group did to one function.
Fields§
§did: Vec<Did>One entry per step, in the order they ran, including the ones that found nothing.
Including them on purpose. A dump that lists only the steps that fired is a dump that cannot tell a step that found nothing from a step somebody forgot to add to the group.
Implementations§
Trait Implementations§
impl Eq for Ran
impl StructuralPartialEq for Ran
Auto Trait Implementations§
impl Freeze for Ran
impl RefUnwindSafe for Ran
impl Send for Ran
impl Sync for Ran
impl Unpin for Ran
impl UnsafeUnpin for Ran
impl UnwindSafe for Ran
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