pub enum ExodusElementType {
Tri3,
Tri6,
Quad4,
Quad8,
Tet4,
Tet10,
Hex8,
Hex20,
Bar2,
}Expand description
Element types supported by the Exodus II format.
Variants§
Tri3
3-node linear triangle.
Tri6
6-node quadratic triangle.
Quad4
4-node bilinear quadrilateral.
Quad8
8-node serendipity quadrilateral.
Tet4
4-node linear tetrahedron.
Tet10
10-node quadratic tetrahedron.
Hex8
8-node linear hexahedron.
Hex20
20-node serendipity hexahedron.
Bar2
2-node bar (beam / truss).
Implementations§
Source§impl ExodusElementType
impl ExodusElementType
Trait Implementations§
Source§impl Clone for ExodusElementType
impl Clone for ExodusElementType
Source§fn clone(&self) -> ExodusElementType
fn clone(&self) -> ExodusElementType
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 moreSource§impl Debug for ExodusElementType
impl Debug for ExodusElementType
Source§impl PartialEq for ExodusElementType
impl PartialEq for ExodusElementType
Source§fn eq(&self, other: &ExodusElementType) -> bool
fn eq(&self, other: &ExodusElementType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ExodusElementType
impl Eq for ExodusElementType
impl StructuralPartialEq for ExodusElementType
Auto Trait Implementations§
impl Freeze for ExodusElementType
impl RefUnwindSafe for ExodusElementType
impl Send for ExodusElementType
impl Sync for ExodusElementType
impl Unpin for ExodusElementType
impl UnsafeUnpin for ExodusElementType
impl UnwindSafe for ExodusElementType
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<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.