]> saetta.ns0.it Git - rust/zakform/commitdiff
Form::fields returns mutable.
authorAndrea Zagli <azagli@libero.it>
Sat, 4 Mar 2023 12:08:59 +0000 (13:08 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 4 Mar 2023 12:08:59 +0000 (13:08 +0100)
src/form.rs

index b49d3ab483473f2d8b1a3e2816dab99330769912..8769a4ffe425c290b55ccc2b8089a1b5a06b0ca0 100644 (file)
@@ -13,8 +13,14 @@ impl Form {
                self.fields.push(field);
        }
 
-       pub fn fields(&self) -> &Vec<Box<dyn super::fields::TField>> {
-               &self.fields
+       pub fn fields(&mut self) -> Vec<&mut Box<dyn super::fields::TField>> {
+               let mut v = vec![];
+
+               for f in &mut self.fields {
+                       v.push(f);
+               }
+
+               v
        }
 
        pub fn get_field(&mut self, field_name: &str) -> Result<&mut Box<dyn super::fields::TField>, ()> {