pub enum ExposureClass {
Interior,
Moderate,
Severe,
Submerged,
}Expand description
Concrete cover requirement based on exposure class.
Variants§
Interior
Interior not exposed to weather.
Moderate
Exposed to weather — moderate.
Severe
Exposed to deicers or aggressive chemicals.
Submerged
Submerged or buried.
Trait Implementations§
Source§impl Clone for ExposureClass
impl Clone for ExposureClass
Source§fn clone(&self) -> ExposureClass
fn clone(&self) -> ExposureClass
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 ExposureClass
impl Debug for ExposureClass
Source§impl PartialEq for ExposureClass
impl PartialEq for ExposureClass
Source§fn eq(&self, other: &ExposureClass) -> bool
fn eq(&self, other: &ExposureClass) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExposureClass
Auto Trait Implementations§
impl Freeze for ExposureClass
impl RefUnwindSafe for ExposureClass
impl Send for ExposureClass
impl Sync for ExposureClass
impl Unpin for ExposureClass
impl UnsafeUnpin for ExposureClass
impl UnwindSafe for ExposureClass
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