pub struct ConversionReport {
pub input_format: Format,
pub output_format: Format,
pub points_read: usize,
pub points_written: usize,
pub faces_read: usize,
pub faces_written: usize,
pub warnings: Vec<String>,
}Expand description
Summary of a completed conversion.
Fields§
§input_format: Format§output_format: Format§points_read: usize§points_written: usize§faces_read: usize§faces_written: usize§warnings: Vec<String>Trait Implementations§
Source§impl Clone for ConversionReport
impl Clone for ConversionReport
Source§fn clone(&self) -> ConversionReport
fn clone(&self) -> ConversionReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ConversionReport
impl Debug for ConversionReport
Source§impl PartialEq for ConversionReport
impl PartialEq for ConversionReport
Source§fn eq(&self, other: &ConversionReport) -> bool
fn eq(&self, other: &ConversionReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ConversionReport
impl StructuralPartialEq for ConversionReport
Auto Trait Implementations§
impl Freeze for ConversionReport
impl RefUnwindSafe for ConversionReport
impl Send for ConversionReport
impl Sync for ConversionReport
impl Unpin for ConversionReport
impl UnsafeUnpin for ConversionReport
impl UnwindSafe for ConversionReport
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