pub(crate) trait Button<T: ProbablyMutable>where
    Self: Sized,
{ type Parent; fn new(parent: Self::Parent, id: usize) -> Option<Self>; fn get_id(&self) -> usize; fn is_clicked(&self) -> bool; fn get_text(&self) -> &String; }

Required Associated Types

Required Methods

Implementors