Hi,
Is lifetime annotation 'static
only for references, or also for owned objects? I don't understand what is the purpose of 'static
when used as lifetime bound for owned object, for example, in this case:
pub fn send(&mut self, reader: impl Read + 'static) -> Response
(This API is part of this crate doc)