pub struct Variant {
pub activities: Vec<String>,
pub count: usize,
pub example: String,
}Expand description
One activity sequence and how many objects of the type follow it.
Fields§
§activities: Vec<String>Activity (event type) names in trace order.
count: usizeObjects whose trace is exactly this sequence.
example: StringOne object id exhibiting this variant.
Trait Implementations§
impl Eq for Variant
impl StructuralPartialEq for Variant
Auto Trait Implementations§
impl Freeze for Variant
impl RefUnwindSafe for Variant
impl Send for Variant
impl Sync for Variant
impl Unpin for Variant
impl UnsafeUnpin for Variant
impl UnwindSafe for Variant
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