pub struct TupleKeyParser<'a> { /* private fields */ }Implementations§
Source§impl<'a> TupleKeyParser<'a>
impl<'a> TupleKeyParser<'a>
pub fn new(tk: &'a TupleKey) -> Self
pub fn peek_next( &self, ) -> Result<Option<(FieldNumber, KeyDataType, Direction)>, &'static str>
pub fn parse_next( &mut self, f: FieldNumber, dir: Direction, ) -> Result<(), &'static str>
pub fn parse_next_with_key<E: Element>( &mut self, f: FieldNumber, dir: Direction, ) -> Result<E, &'static str>
Auto Trait Implementations§
impl<'a> Freeze for TupleKeyParser<'a>
impl<'a> RefUnwindSafe for TupleKeyParser<'a>
impl<'a> Send for TupleKeyParser<'a>
impl<'a> Sync for TupleKeyParser<'a>
impl<'a> Unpin for TupleKeyParser<'a>
impl<'a> UnwindSafe for TupleKeyParser<'a>
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