(&self)
| 84 | /// Indicates if this string decoder is ready or not |
| 85 | /// |
| 86 | #[inline] fn ready(&self) -> bool { |
| 87 | match (&self.length, &self.string_encoding) { |
| 88 | (PartialResult::FullMatch(_), PartialResult::FullMatch(_)) => true, |
| 89 | _ => false |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | /// |
| 94 | /// Returns the string matched by this decoder (once it's ready) |
no outgoing calls
no test coverage detected