store.rs 441 B

1234567891011121314151617181920212223
  1. use comm::Message;
  2. use std::collections::HashMap;
  3. pub struct Store {
  4. data: HashMap<String, String>
  5. }
  6. impl Store {
  7. pub fn new() -> Store {
  8. Store { data: HashMap::new() }
  9. }
  10. pub fn save(&mut self, msg: Message) {
  11. self.data.insert(msg.kind, msg.text);
  12. }
  13. pub fn get(&self, kind: &str) -> &str {
  14. match self.data.get(kind) {
  15. Some(res) => res,
  16. None => ""
  17. }
  18. }
  19. }