pub struct FormatResult {
pub success: bool,
pub lines_processed: usize,
pub warnings: Vec<String>,
pub metadata: HashMap<String, String>,
}Available on crate feature
std only.Expand description
Result of an import/export operation
Fields§
§success: boolWhether the operation succeeded
lines_processed: usizeNumber of lines/entries processed
warnings: Vec<String>Warnings encountered during processing
metadata: HashMap<String, String>Additional metadata from the operation
Implementations§
Source§impl FormatResult
impl FormatResult
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FormatResult
impl RefUnwindSafe for FormatResult
impl Send for FormatResult
impl Sync for FormatResult
impl Unpin for FormatResult
impl UnwindSafe for FormatResult
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