pub enum StepUnsupportedPolicy {
Report,
Reject,
}Expand description
Policy for semantic content not representable by the selected STEP target.
Variants§
Report
Emit the representable subset and return machine-readable loss notes.
Reject
Reject the document before writing any output byte.
Trait Implementations§
Source§impl Clone for StepUnsupportedPolicy
impl Clone for StepUnsupportedPolicy
Source§fn clone(&self) -> StepUnsupportedPolicy
fn clone(&self) -> StepUnsupportedPolicy
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 moreimpl Copy for StepUnsupportedPolicy
Source§impl Debug for StepUnsupportedPolicy
impl Debug for StepUnsupportedPolicy
Source§impl Default for StepUnsupportedPolicy
impl Default for StepUnsupportedPolicy
Source§fn default() -> StepUnsupportedPolicy
fn default() -> StepUnsupportedPolicy
Returns the “default value” for a type. Read more
impl Eq for StepUnsupportedPolicy
Source§impl PartialEq for StepUnsupportedPolicy
impl PartialEq for StepUnsupportedPolicy
impl StructuralPartialEq for StepUnsupportedPolicy
Auto Trait Implementations§
impl Freeze for StepUnsupportedPolicy
impl RefUnwindSafe for StepUnsupportedPolicy
impl Send for StepUnsupportedPolicy
impl Sync for StepUnsupportedPolicy
impl Unpin for StepUnsupportedPolicy
impl UnsafeUnpin for StepUnsupportedPolicy
impl UnwindSafe for StepUnsupportedPolicy
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