(src: CtOption<T>)
| 610 | /// </div> |
| 611 | impl<T> From<CtOption<T>> for Option<T> { |
| 612 | fn from(src: CtOption<T>) -> Option<T> { |
| 613 | src.into_option() |
| 614 | } |
| 615 | } |
| 616 | |
| 617 | /// NOTE: in order to be able to unwrap the `subtle::CtOption` we rely on a `Default` bound in |
nothing calls this directly
no test coverage detected