mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
fmt
This commit is contained in:
@ -33,12 +33,10 @@ impl<T> FromIterator<T> for Path<T> {
|
||||
}
|
||||
|
||||
impl<T> IntoIterator for Path<T> {
|
||||
type Item = T;
|
||||
type IntoIter = std::vec::IntoIter<T>;
|
||||
type Item = T;
|
||||
|
||||
fn into_iter(self) -> Self::IntoIter {
|
||||
self.nodes.into_iter()
|
||||
}
|
||||
fn into_iter(self) -> Self::IntoIter { self.nodes.into_iter() }
|
||||
}
|
||||
|
||||
impl<T> Path<T> {
|
||||
|
Reference in New Issue
Block a user