Moves all the elements of `other` into `self`, leaving `other` empty, then return `self` for chainability.
(mut self, mut other: Requirements)
| 476 | /// Moves all the elements of `other` into `self`, leaving `other` empty, |
| 477 | /// then return `self` for chainability. |
| 478 | pub fn append(mut self, mut other: Requirements) -> Requirements { |
| 479 | self.0.append(&mut other.0); |
| 480 | self |
| 481 | } |
| 482 | |
| 483 | /// Set a maximum complexity to all stored requirements. |
| 484 | pub fn allow_up_to(mut self, max_complexity: Complexity) -> Self { |
no outgoing calls
no test coverage detected