self.options.push(option);
}
+ pub fn remove_option(&mut self, value: String) {
+ let mut i = 0;
+ let l = self.options.len();
+ while i < l {
+ if self.options[i].value == value {
+ self.options.remove(i);
+ return;
+ }
+ i += 1;
+ }
+ }
+
pub fn render_single(&self, idx: usize) -> String {
let mut s = String::new();
pub fn add_option(&mut self, option: FOption) {
self.options.push(option);
}
+
+ pub fn remove_option(&mut self, value: String) {
+ let mut i = 0;
+ let l = self.options.len();
+ while i < l {
+ if self.options[i].value == value {
+ self.options.remove(i);
+ return;
+ }
+ i += 1;
+ }
+ }
}
#[derive(Default)]