minidom: Remove unused lifetimes
These can be elided just fine. skip-changelog: This is purely internal change.
This commit is contained in:
parent
205857e59c
commit
26dd6a2a29
3 changed files with 4 additions and 4 deletions
|
|
@ -49,13 +49,13 @@ impl IntoAttributeValue for String {
|
|||
}
|
||||
}
|
||||
|
||||
impl<'a> IntoAttributeValue for &'a String {
|
||||
impl IntoAttributeValue for &String {
|
||||
fn into_attribute_value(self) -> Option<String> {
|
||||
Some(self.to_owned())
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a> IntoAttributeValue for &'a str {
|
||||
impl IntoAttributeValue for &str {
|
||||
fn into_attribute_value(self) -> Option<String> {
|
||||
Some(self.to_owned())
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue