A function argument abstraction enabling dynamic method invocation on a target instance or on the first argument if the function is not called as a method. This is similar to how methods can be called as functions using the [fully-qualified syntax](https://doc.rust-lang.org/book/ch19-03-advanced-traits.html#fully-qualified-syntax-for-disambiguation-calling-methods-with-the-same-name). # Using `T
| 139 | /// } |
| 140 | /// ``` |
| 141 | pub struct This<T>(pub T); |
| 142 | |
| 143 | impl<'a, 'context, 'call, T> FromContext<'a, 'context, 'call> for This<T> |
| 144 | where |