Remove unused const

This commit is contained in:
Dirkjan Ochtman 2022-11-29 15:15:39 +01:00
parent a2aadde276
commit 9b2cd415af
2 changed files with 0 additions and 2 deletions

View File

@ -465,7 +465,6 @@ impl<'xml, T: FromXml<'xml>> FromXml<'xml> for Vec<T> {
}
const KIND: Kind<'static> = T::KIND;
const WRAPPED: bool = true;
}
impl<T: ToXml> ToXml for Vec<T> {

View File

@ -48,7 +48,6 @@ pub trait FromXml<'xml>: Sized {
}
const KIND: Kind<'static>;
const WRAPPED: bool = false;
}
pub fn from_str<'xml, T: FromXml<'xml>>(input: &'xml str) -> Result<T, Error> {