You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 18, 2026. It is now read-only.
To iterate over Records in a given Input, the current supported way is implementing the Handler and call Handler::process, which is a wrapper of tracecmd_iterate_events().
To support more flexible handling, it'd be nice to support Iterator whose Item is Record.
let input = Input::new(...)?;for event in input.to_iter(){// process event}
Its next() should be able to be implemented by wrapping tracecmd_read_data.
To iterate over
Records in a givenInput, the current supported way is implementing theHandlerand callHandler::process, which is a wrapper oftracecmd_iterate_events().To support more flexible handling, it'd be nice to support
IteratorwhoseItemisRecord.Its
next()should be able to be implemented by wrappingtracecmd_read_data.