pub struct CsvExportReport {
pub vertices_path: PathBuf,
pub faces_path: PathBuf,
pub normals_path: PathBuf,
pub uvs_path: PathBuf,
pub vertex_count: usize,
pub face_count: usize,
}Expand description
Report returned by export_mesh_csv.
Fields§
§vertices_path: PathBuf§faces_path: PathBuf§normals_path: PathBuf§uvs_path: PathBuf§vertex_count: usize§face_count: usizeAuto Trait Implementations§
impl Freeze for CsvExportReport
impl RefUnwindSafe for CsvExportReport
impl Send for CsvExportReport
impl Sync for CsvExportReport
impl Unpin for CsvExportReport
impl UnsafeUnpin for CsvExportReport
impl UnwindSafe for CsvExportReport
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more