/// Editor layer information
#[derive(Debug, Clone)]pubstructEditorLayerInfo{/// Name of the editor layer
pubname: String,
/// Color of the layer (RGBA)
pubcolor:(u8, u8, u8, u8),
/// Whether the layer is hidden
pubhidden:bool,
}/// Bookmark information
#[derive(Debug, Clone)]pubstructBookmarkInfo{/// Start time of the bookmark in milliseconds
pubstart_time:f32,
/// Note for the bookmark
pubnote: String,
}