(&mut self)
| 76 | #[inline] |
| 77 | #[must_use] |
| 78 | pub const fn as_mut(&mut self) -> CtOption<&mut T> { |
| 79 | CtOption { |
| 80 | value: &mut self.value, |
| 81 | is_some: self.is_some, |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | /// Convert from a `&CtOption<T>` to `CtOption<&T>`. |
| 86 | #[inline] |
no outgoing calls
no test coverage detected