pub struct ParseBatch {
pub entries: Vec<(String, String)>,
}Expand description
A batch of parse requests.
Fields§
§entries: Vec<(String, String)>Source strings with associated names.
Implementations§
Source§impl ParseBatch
impl ParseBatch
Sourcepub fn execute(self) -> ParseSession
pub fn execute(self) -> ParseSession
Execute the batch and return a ParseSession.
Trait Implementations§
Source§impl Debug for ParseBatch
impl Debug for ParseBatch
Source§impl Default for ParseBatch
impl Default for ParseBatch
Source§fn default() -> ParseBatch
fn default() -> ParseBatch
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ParseBatch
impl RefUnwindSafe for ParseBatch
impl Send for ParseBatch
impl Sync for ParseBatch
impl Unpin for ParseBatch
impl UnsafeUnpin for ParseBatch
impl UnwindSafe for ParseBatch
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