// Copyright Rob Gage 2025
usepups_core::Input;/// 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(&self, count:usize);}