osb 0.3.0

A fast, fully-fledged, scalable and secure implementation of the .osb storyboard file format
Documentation
1
2
3
4
5
6
7
/// Trait defining `Event`s
pub trait Event {
    fn to_line(&self) -> String;
    fn set_depth(&mut self, depth: usize);
    fn get_start_time(&self) -> i32;
    fn get_end_time(&self) -> i32;
}