pub struct LoadResult {
pub records: Vec<RunRecord>,
pub skipped_lines: usize,
}Expand description
Result of loading stats records, including count of skipped malformed lines.
Fields§
§records: Vec<RunRecord>§skipped_lines: usizeAuto Trait Implementations§
impl Freeze for LoadResult
impl RefUnwindSafe for LoadResult
impl Send for LoadResult
impl Sync for LoadResult
impl Unpin for LoadResult
impl UnsafeUnpin for LoadResult
impl UnwindSafe for LoadResult
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