pub trait AnyFormatItem {
// Required method
fn parse_item<'a>(
&self,
parsed: &mut Parsed,
input: &'a [u8],
) -> Result<&'a [u8], ParseFromDescription>;
}
Available on crate feature
parsing
only.Expand description
A trait to allow parse_item
to be generic.
Required Methods§
Sourcefn parse_item<'a>(
&self,
parsed: &mut Parsed,
input: &'a [u8],
) -> Result<&'a [u8], ParseFromDescription>
fn parse_item<'a>( &self, parsed: &mut Parsed, input: &'a [u8], ) -> Result<&'a [u8], ParseFromDescription>
Parse a single item, returning the remaining input on success.
Implementors§
impl AnyFormatItem for BorrowedFormatItem<'_>
impl AnyFormatItem for OwnedFormatItem
Available on crate feature
alloc
only.