pub struct AuthorsParser;Trait Implementations§
Source§impl FieldParser for AuthorsParser
impl FieldParser for AuthorsParser
type Output = Vec<String>
fn parse(inp: &[u8]) -> IResult<&[u8], Authors>
fn parse_into<'a, 'b>(inp: &'a [u8], dst: &'b mut Self::Output) -> &'a [u8] ⓘ
fn parse_into_vec<'a>(inp: &'a [u8], dst: &mut Vec<Self::Output>) -> &'a [u8] ⓘ
fn parse_into_option<'a>( inp: &'a [u8], dst: &mut Option<Self::Output>, ) -> &'a [u8] ⓘ
Auto Trait Implementations§
impl Freeze for AuthorsParser
impl RefUnwindSafe for AuthorsParser
impl Send for AuthorsParser
impl Sync for AuthorsParser
impl Unpin for AuthorsParser
impl UnwindSafe for AuthorsParser
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more