| Commit message (Collapse) | Author | Age | Files | Lines |
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
There are two reasons why the DynFilter newtype might be needed:
1. To impl Default. But we don't need it to impl Default since we can
have an accessor which does the defaulting.
2. To hide the API. But this is usrely an unstable API.
Just writing Arc<dyn> gets rid of a lot of unnecessary boilerplate and
conversion code.
|
| |
|
|
|
| |
Abolish the handwritten Debug impl for DynFilter, which is no longer
needed.
|
| |
|
|
|
| |
This will make it possible to implement a directory-munging
mechanism in arti-testing for #397.
|
| | |
|
| | |
|
| |
|
|
| |
Put it behind experimental_api.
|
| | |
|
|
|
This is a defensive API choice to protect against the possibility
that we'll want to add a bunch of other non-config options in
the future.
Closes #350
|