Skip to content

Instantly share code, notes, and snippets.

@sakex
Created June 23, 2020 18:26
Show Gist options
  • Save sakex/f28bc8f9591d3bede5b0901e2886371a to your computer and use it in GitHub Desktop.
Save sakex/f28bc8f9591d3bede5b0901e2886371a to your computer and use it in GitHub Desktop.
// src/button.rs
pub trait Button {
fn click(&mut self);
fn inner_text(&mut self) -> String;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment