(&self)
| 1114 | } |
| 1115 | |
| 1116 | pub fn implicit_coercion(&self) -> Option<&ImplicitCoercion> { |
| 1117 | match self { |
| 1118 | Coercion::Exact { .. } => None, |
| 1119 | Coercion::Implicit { |
| 1120 | implicit_coercion, .. |
| 1121 | } => Some(implicit_coercion), |
| 1122 | } |
| 1123 | } |
| 1124 | } |
| 1125 | |
| 1126 | impl Display for Coercion { |
no outgoing calls
no test coverage detected