We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a higher-level concept of an Asciicast session. This would keep track of timing and such. API might look something like:
let mut session = asciicast::Session::new(asciicast::v2); session.set_height(42); session.set_width(42); session.add_event(asciicast::EventType::Input, String::new("this is an event"); session.add_event(asciicast::EventType::Output, String::new("whatever"); let completed = session.end();
It might be cool to have the session provide a stream as well.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add a higher-level concept of an Asciicast session. This would keep track of timing and such. API might look something like:
It might be cool to have the session provide a stream as well.
The text was updated successfully, but these errors were encountered: