#[repr(u8)]pub enum AcisVersion {
Version1 = 1,
Version2 = 2,
}Expand description
ACIS/SAT data format version.
Variants§
Version1 = 1
Version 1: SAT data with character encoding.
Version2 = 2
Version 2: Text SAT or binary SAB.
Trait Implementations§
Source§impl Clone for AcisVersion
impl Clone for AcisVersion
Source§fn clone(&self) -> AcisVersion
fn clone(&self) -> AcisVersion
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AcisVersion
impl Debug for AcisVersion
Source§impl Default for AcisVersion
impl Default for AcisVersion
Source§fn default() -> AcisVersion
fn default() -> AcisVersion
Returns the “default value” for a type. Read more
Source§impl From<u8> for AcisVersion
impl From<u8> for AcisVersion
Source§impl PartialEq for AcisVersion
impl PartialEq for AcisVersion
impl Copy for AcisVersion
impl Eq for AcisVersion
impl StructuralPartialEq for AcisVersion
Auto Trait Implementations§
impl Freeze for AcisVersion
impl RefUnwindSafe for AcisVersion
impl Send for AcisVersion
impl Sync for AcisVersion
impl Unpin for AcisVersion
impl UnsafeUnpin for AcisVersion
impl UnwindSafe for AcisVersion
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.