Struct move_model::options::ModelBuilderOptions
source · [−]pub struct ModelBuilderOptions {
pub ignore_pragma_opaque_internal_only: bool,
pub ignore_pragma_opaque_when_possible: bool,
pub simplification_pipeline: Vec<SimplificationPass>,
}
Fields
ignore_pragma_opaque_internal_only: bool
Ignore the “opaque” pragma on internal function (i.e., functions with no unknown callers)
specs when possible. The opaque can be ignored as long as the function spec has no property
marked as [concrete]
or [abstract]
.
ignore_pragma_opaque_when_possible: bool
Ignore the “opaque” pragma on all function specs when possible. The opaque can be ignored
as long as the function spec has no property marked as [concrete]
or [abstract]
.
simplification_pipeline: Vec<SimplificationPass>
List of simplification passes and the order each pass to be executed
Trait Implementations
sourceimpl Clone for ModelBuilderOptions
impl Clone for ModelBuilderOptions
sourcefn clone(&self) -> ModelBuilderOptions
fn clone(&self) -> ModelBuilderOptions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ModelBuilderOptions
impl Debug for ModelBuilderOptions
sourceimpl Default for ModelBuilderOptions
impl Default for ModelBuilderOptions
sourcefn default() -> ModelBuilderOptions
fn default() -> ModelBuilderOptions
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ModelBuilderOptions where
ModelBuilderOptions: Default,
impl<'de> Deserialize<'de> for ModelBuilderOptions where
ModelBuilderOptions: Default,
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Serialize for ModelBuilderOptions
impl Serialize for ModelBuilderOptions
Auto Trait Implementations
impl RefUnwindSafe for ModelBuilderOptions
impl Send for ModelBuilderOptions
impl Sync for ModelBuilderOptions
impl Unpin for ModelBuilderOptions
impl UnwindSafe for ModelBuilderOptions
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more