pub enum SolidMaterialError {
InvalidYoungsModulus,
InvalidPoissonRatio,
}Variants§
Trait Implementations§
Source§impl Clone for SolidMaterialError
impl Clone for SolidMaterialError
Source§fn clone(&self) -> SolidMaterialError
fn clone(&self) -> SolidMaterialError
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 SolidMaterialError
impl Debug for SolidMaterialError
Source§impl Display for SolidMaterialError
impl Display for SolidMaterialError
Source§impl Error for SolidMaterialError
impl Error for SolidMaterialError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<SolidMaterialError> for Tetrahedron4ElementError
impl From<SolidMaterialError> for Tetrahedron4ElementError
Source§fn from(source: SolidMaterialError) -> Self
fn from(source: SolidMaterialError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SolidMaterialError
impl PartialEq for SolidMaterialError
impl StructuralPartialEq for SolidMaterialError
Auto Trait Implementations§
impl Freeze for SolidMaterialError
impl RefUnwindSafe for SolidMaterialError
impl Send for SolidMaterialError
impl Sync for SolidMaterialError
impl Unpin for SolidMaterialError
impl UnsafeUnpin for SolidMaterialError
impl UnwindSafe for SolidMaterialError
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