macro_rules! unwrap { ($expr: expr) => { ... }; }
Unwraps a container, returns the content.
The input type must be one of
Option<T>
T: Copy
The Copy bound may be relaxed in the future.
Copy