pub struct AngleSection {
pub l: f64,
pub t: f64,
pub fy: f64,
}Expand description
Equal-leg angle section properties.
Fields§
§l: f64Leg length L (mm).
t: f64Leg thickness t (mm).
fy: f64Yield strength Fy (MPa).
Implementations§
Source§impl AngleSection
impl AngleSection
Sourcepub fn axial_capacity(&self) -> f64
pub fn axial_capacity(&self) -> f64
Axial capacity Pn (N) for short column.
Trait Implementations§
Source§impl Clone for AngleSection
impl Clone for AngleSection
Source§fn clone(&self) -> AngleSection
fn clone(&self) -> AngleSection
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 moreAuto Trait Implementations§
impl Freeze for AngleSection
impl RefUnwindSafe for AngleSection
impl Send for AngleSection
impl Sync for AngleSection
impl Unpin for AngleSection
impl UnsafeUnpin for AngleSection
impl UnwindSafe for AngleSection
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