(&self)
| 115 | /// Check if this credit type involves AI. |
| 116 | #[inline] |
| 117 | pub fn involves_ai(&self) -> bool { |
| 118 | matches!( |
| 119 | self, |
| 120 | CreditType::AiAssisted | CreditType::Collaborative | CreditType::AiGenerated |
| 121 | ) |
| 122 | } |
| 123 | |
| 124 | /// Check if this is purely human-authored. |
| 125 | #[inline] |
no outgoing calls
no test coverage detected