(value: F)
| 149 | } |
| 150 | |
| 151 | fn write<F: Flags>(value: F) -> String |
| 152 | where |
| 153 | F::Bits: crate::parser::WriteHex, |
| 154 | { |
| 155 | let mut s = String::new(); |
| 156 | |
| 157 | to_writer(&value, &mut s).unwrap(); |
| 158 | s |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | mod from_str_truncate { |
nothing calls this directly
no test coverage detected