pub enum ParseEvent<'i> {
MessageStart(MessageStart<'i>),
GetListResponseEnd(GetListResponseEnd<'i>),
ListEntry(ListEntry<'i>),
}
Expand description
Event data structure produced by the streaming parser.
Variants§
MessageStart(MessageStart<'i>)
Start of an SML Message.
GetListResponseEnd(GetListResponseEnd<'i>)
End of a GetListResponse message.
ListEntry(ListEntry<'i>)
A single data value.
Trait Implementations§
Auto Trait Implementations§
impl<'i> Freeze for ParseEvent<'i>
impl<'i> RefUnwindSafe for ParseEvent<'i>
impl<'i> Send for ParseEvent<'i>
impl<'i> Sync for ParseEvent<'i>
impl<'i> Unpin for ParseEvent<'i>
impl<'i> UnwindSafe for ParseEvent<'i>
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