pub struct BatchOps {
pub validate: bool,
pub validate_level: Option<String>,
pub stats: bool,
pub list: bool,
pub convert: bool,
pub convert_ascii: bool,
pub output_dir: Option<PathBuf>,
}Expand description
Set of operations to perform in a batch run.
Fields§
§validate: boolRun validation at this level (None = skip validate)
validate_level: Option<String>Validation level string (minimal/standard/strict/paranoid)
stats: boolCompute and emit model statistics
list: boolList archive entries
convert: boolConvert to another format
convert_ascii: boolUse ASCII format for STL conversion output (false = binary)
output_dir: Option<PathBuf>Output directory for converted files
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BatchOps
impl RefUnwindSafe for BatchOps
impl Send for BatchOps
impl Sync for BatchOps
impl Unpin for BatchOps
impl UnsafeUnpin for BatchOps
impl UnwindSafe for BatchOps
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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