| 9 | use crate::{Element, IntoPyArray, PyArray, PyReadonlyArray, PyUntypedArray}; |
| 10 | |
| 11 | pub trait Coerce: Sealed { |
| 12 | const ALLOW_TYPE_CHANGE: bool; |
| 13 | } |
| 14 | |
| 15 | mod sealed { |
| 16 | pub trait Sealed {} |
nothing calls this directly
no outgoing calls
no test coverage detected