pub struct BearingCapacityResult {
pub bearing_capacity_factors: BearingCapacityFactors,
pub shape_factors: ShapeFactors,
pub depth_factors: DepthFactors,
pub load_inclination_factors: InclinationFactors,
pub ground_factors: GroundFactors,
pub base_factors: BaseFactors,
pub soil_params: SoilParams,
pub ultimate_bearing_capacity: f64,
pub allowable_bearing_capacity: f64,
pub is_safe: bool,
pub qmax: f64,
}Fields§
§bearing_capacity_factors: BearingCapacityFactors§shape_factors: ShapeFactors§depth_factors: DepthFactors§load_inclination_factors: InclinationFactors§ground_factors: GroundFactors§base_factors: BaseFactors§soil_params: SoilParams§ultimate_bearing_capacity: f64§allowable_bearing_capacity: f64§is_safe: bool§qmax: f64Trait Implementations§
Source§impl Debug for BearingCapacityResult
impl Debug for BearingCapacityResult
Auto Trait Implementations§
impl Freeze for BearingCapacityResult
impl RefUnwindSafe for BearingCapacityResult
impl Send for BearingCapacityResult
impl Sync for BearingCapacityResult
impl Unpin for BearingCapacityResult
impl UnsafeUnpin for BearingCapacityResult
impl UnwindSafe for BearingCapacityResult
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