pub struct CrossSection {
pub area: f64,
pub ix: f64,
pub radius: f64,
}Expand description
Cross-sectional shape of a beam
Fields§
§area: f64§ix: f64§radius: f64Implementations§
Source§impl CrossSection
impl CrossSection
Trait Implementations§
Source§impl Clone for CrossSection
impl Clone for CrossSection
Source§fn clone(&self) -> CrossSection
fn clone(&self) -> CrossSection
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 CrossSection
impl Debug for CrossSection
Source§impl<'de> Deserialize<'de> for CrossSection
impl<'de> Deserialize<'de> for CrossSection
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CrossSection
impl RefUnwindSafe for CrossSection
impl Send for CrossSection
impl Sync for CrossSection
impl Unpin for CrossSection
impl UnsafeUnpin for CrossSection
impl UnwindSafe for CrossSection
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