f
Size: a a a
f
f
f
/// Observed Particle.
///
/// On `First` observation it's just a particle, but on the `Next` observations
/// it might have `CallResults` attached to id.
pub enum Observation {
First(Particle),
Next {
particle: Particle,
results: CallResults,
},
}
D
D
D
t
t
t
t
t
t
t
t
t
t
t
t
t
t