index
:
dynamize
master
A proc macro to enable trait objects with variable associated types
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
transform.rs
Age
Commit message (
Expand
)
Author
2021-11-26
return error for unused #[convert]s
Martin Fischer
2021-11-26
introduce #[convert] attribute
Martin Fischer
2021-11-25
support Self qualified as same trait
Martin Fischer
2021-11-25
better error for qualified associated types
Martin Fischer
2021-11-25
also detect <Self as Foo>::X in generic type args
Martin Fischer
2021-11-25
refactor: remove unnecessary TypeOrPath type
Martin Fischer
2021-11-25
rename parse_trait_sig module to trait_sig
Martin Fischer
2021-11-24
better error message for <Self as Foo>::X
Martin Fischer
2021-11-24
refactor: fix clippy::needless_range_loop
Martin Fischer
2021-11-23
support tuples
Martin Fischer
2021-11-22
support other collections via #[collection(...)]
Martin Fischer
2021-11-22
better errors for type arguments of collections
Martin Fischer
2021-11-22
make convert_type skip non-type generics
Martin Fischer
2021-11-22
refactor: make MethodError wrap TransformError
Martin Fischer
2021-11-22
refactor: move Span out of TransformError enum
Martin Fischer
2021-11-22
simplify MethodError variants
Martin Fischer
2021-11-22
rename MethodParseError to MethodError
Martin Fischer
2021-11-22
refactor: support IntoIterMapCollect with N types
Martin Fischer
2021-11-22
generalize to collection with one type / two types
Martin Fischer
2021-11-22
rename AssocTypeConversions to TypeConverter
Martin Fischer
2021-11-22
support HashMap and BTreeMap
Martin Fischer
2021-11-22
refactor: make type conversion function more DRY
Martin Fischer
2021-11-22
refactor: change x.first().unwrap() to x[0]
Martin Fischer
2021-11-22
support HashSet, BinaryHeap and BTreeSet
Martin Fischer
2021-11-22
support Vec, VecDeque & LinkedList collections
Martin Fischer
2021-11-22
fix unconvertible type error span
Martin Fischer
2021-11-21
support boxed Iterator in Option
Martin Fischer
2021-11-21
support -> &mut dyn Iterator<Item = Self::A>
Martin Fischer
2021-11-21
better errors for assoc types in where clauses
Martin Fischer
2021-11-21
also dynamize simple type param bounds in where clauses
Martin Fischer
2021-11-20
refactor: traverse AST via iterators
Martin Fischer
2021-11-20
refactor: remove now pointless internal trait
Martin Fischer
2021-11-20
refactor: use syn::Generics::type_params iterators
Martin Fischer
2021-11-19
refactor: make destination type mechanism extensible
Martin Fischer
2021-11-19
refactor: forward type param transforms as HashMap
Martin Fischer
2021-11-19
refactor: factor out transform module
Martin Fischer