1 2 3 4 5 6 7 8 9 10 11 12 13
use serde::Serialize; #[derive(Serialize, Debug)] pub struct Button { label: String, url: String, } impl Button { pub fn new(label: String, url: String) -> Button { Self { label, url } } }