pub struct BatchUpdateResult<'a> {
pub updated: Vec<(usize, LineContent<'a>)>,
pub failed: Vec<(usize, ParseError)>,
}Expand description
Result of a batch update operation
Fields§
§updated: Vec<(usize, LineContent<'a>)>Successfully updated lines with their old content
failed: Vec<(usize, ParseError)>Failed updates with error information
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for BatchUpdateResult<'a>
impl<'a> RefUnwindSafe for BatchUpdateResult<'a>
impl<'a> Send for BatchUpdateResult<'a>
impl<'a> Sync for BatchUpdateResult<'a>
impl<'a> Unpin for BatchUpdateResult<'a>
impl<'a> UnwindSafe for BatchUpdateResult<'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