// Copyright Rob Gage 2025
/// Represents text-based input that can be consumed by parsers
pubtraitTextInput{/// Returns true if the `TextInput` starts with a given string
fnstarts_with(&self, string:&str)->bool;/// Skips past a given number of bytes in the `TextInput`
fnskip_bytes(&mutself, count:usize);}