Searched refs:TypeParamsMut (Results 1 – 1 of 1) sorted by relevance
131 pub fn type_params_mut(&mut self) -> impl Iterator<Item = &mut TypeParam> [TypeParamsMut] {132 TypeParamsMut(self.params.iter_mut())229 pub struct TypeParamsMut<'a>(IterMut<'a, GenericParam>); struct231 impl<'a> Iterator for TypeParamsMut<'a> { implementation