pub struct MatrixProperties {
pub modulus: f64,
pub poisson_ratio: f64,
}Expand description
Properties of the matrix (binder) phase.
Fields§
§modulus: f64Young’s modulus of the matrix [Pa].
poisson_ratio: f64Poisson’s ratio of the matrix (dimensionless).
Implementations§
Trait Implementations§
Source§impl Clone for MatrixProperties
impl Clone for MatrixProperties
Source§fn clone(&self) -> MatrixProperties
fn clone(&self) -> MatrixProperties
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 MatrixProperties
impl Debug for MatrixProperties
Source§impl PartialEq for MatrixProperties
impl PartialEq for MatrixProperties
Source§fn eq(&self, other: &MatrixProperties) -> bool
fn eq(&self, other: &MatrixProperties) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MatrixProperties
Auto Trait Implementations§
impl Freeze for MatrixProperties
impl RefUnwindSafe for MatrixProperties
impl Send for MatrixProperties
impl Sync for MatrixProperties
impl Unpin for MatrixProperties
impl UnsafeUnpin for MatrixProperties
impl UnwindSafe for MatrixProperties
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