| 111 | unsafe impl Sync for WrappedWand {} |
| 112 | |
| 113 | pub enum ContentState { |
| 114 | Empty, |
| 115 | Running, |
| 116 | Ok(WrappedWand), |
| 117 | Err(Error), |
| 118 | } |
| 119 | |
| 120 | impl ContentState { |
| 121 | pub fn new() -> Shared<ContentState> { |
nothing calls this directly
no outgoing calls
no test coverage detected