pub struct Parsed<E> {
pub req: Vec<Request>,
pub task: Vec<Task>,
pub affix: Vec<Affix>,
pub entities: Vec<E>,
pub errs: Vec<Result<Response, MetaResponse>>,
}
Expand description
the parsed result returned by parser
.
Fields§
§req: Vec<Request>
a vector of Request
task: Vec<Task>
a vector of Task
affix: Vec<Affix>
a vector of Affix
entities: Vec<E>
a vector of customized Entity
errs: Vec<Result<Response, MetaResponse>>
a vector of record for failed Response
, for the use of debug.
Implementations§
Auto Trait Implementations§
impl<E> Freeze for Parsed<E>
impl<E> !RefUnwindSafe for Parsed<E>
impl<E> Send for Parsed<E>where
E: Send,
impl<E> Sync for Parsed<E>where
E: Sync,
impl<E> Unpin for Parsed<E>where
E: Unpin,
impl<E> !UnwindSafe for Parsed<E>
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