For a wrapper type, I want to implement Deref
to make things like method call syntax work transparently on the inner type, no? I don't want to call borrow
first. You "deref the wrapper away".
1 Like
For a wrapper type, I want to implement Deref
to make things like method call syntax work transparently on the inner type, no? I don't want to call borrow
first. You "deref the wrapper away".