We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edc9984 commit 0b750c2Copy full SHA for 0b750c2
src/lib.rs
@@ -174,12 +174,12 @@ impl BrowserOptions {
174
Self::default()
175
}
176
177
- pub fn with_suppress_output<'a>(&'a mut self, suppress_output: bool) -> &'a mut Self {
+ pub fn with_suppress_output(&mut self, suppress_output: bool) -> &mut Self {
178
self.suppress_output = suppress_output;
179
self
180
181
182
- pub fn with_target_hint<'a>(&'a mut self, target_hint: &str) -> &'a mut Self {
+ pub fn with_target_hint(&mut self, target_hint: &str) -> &mut Self {
183
self.target_hint = target_hint.to_owned();
184
185
0 commit comments