Trait time::parsing::parsed::sealed::AnyFormatItem

source ·
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§

source

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§

source§

impl AnyFormatItem for BorrowedFormatItem<'_>

source§

impl AnyFormatItem for OwnedFormatItem

Available on crate feature alloc only.