pub enum StlFormat {
Binary,
Ascii,
}Expand description
Which of STL’s two encodings to write.
Variants§
Binary
Compact, and what most tools expect.
Ascii
Plain text, one line per normal and corner — readable and diffable.
Trait Implementations§
impl Copy for StlFormat
impl Eq for StlFormat
impl StructuralPartialEq for StlFormat
Auto Trait Implementations§
impl Freeze for StlFormat
impl RefUnwindSafe for StlFormat
impl Send for StlFormat
impl Sync for StlFormat
impl Unpin for StlFormat
impl UnsafeUnpin for StlFormat
impl UnwindSafe for StlFormat
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