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