useserde::Serialize;/// Simple structure containing a label and an URL to form a Discord Activity button.
#[derive(Serialize, Debug)]pubstructButton{label: String,
url: String,
}implButton{pubfnnew(label: String, url: String)-> Button{Self{ label, url }}}