pub enum SolidAssemblyError {
EmptyNodes,
EmptyVolumeElements,
UnsupportedVolumeElementKind {
element_id: String,
},
UnknownElementNode {
element_id: String,
node_id: u32,
},
InvalidElementNodeCount {
element_id: String,
actual: usize,
},
ElementStiffness {
element_id: String,
message: String,
},
}Variants§
EmptyNodes
EmptyVolumeElements
UnsupportedVolumeElementKind
UnknownElementNode
InvalidElementNodeCount
ElementStiffness
Trait Implementations§
Source§impl Clone for SolidAssemblyError
impl Clone for SolidAssemblyError
Source§fn clone(&self) -> SolidAssemblyError
fn clone(&self) -> SolidAssemblyError
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 SolidAssemblyError
impl Debug for SolidAssemblyError
impl Eq for SolidAssemblyError
Source§impl PartialEq for SolidAssemblyError
impl PartialEq for SolidAssemblyError
impl StructuralPartialEq for SolidAssemblyError
Auto Trait Implementations§
impl Freeze for SolidAssemblyError
impl RefUnwindSafe for SolidAssemblyError
impl Send for SolidAssemblyError
impl Sync for SolidAssemblyError
impl Unpin for SolidAssemblyError
impl UnsafeUnpin for SolidAssemblyError
impl UnwindSafe for SolidAssemblyError
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