1 2//! Information about an available update. 3 4#[derive(Debug, Clone)] 5pub struct Struct { 6 pub update_available:bool, 7 8 pub version:String, 9 10 pub download_url:String, 11 12 pub release_notes:String, 13}