pub struct ExposureLevel {
pub own: f64,
pub neighbors: f64,
}Expand description
One exposure category/level.
Fields§
§own: f64Unit’s own treatment.
neighbors: f64Neighborhood summary; zero for ExposureMapping::OwnTreatment.
Trait Implementations§
Source§impl Clone for ExposureLevel
impl Clone for ExposureLevel
Source§fn clone(&self) -> ExposureLevel
fn clone(&self) -> ExposureLevel
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 moreimpl Copy for ExposureLevel
Source§impl Debug for ExposureLevel
impl Debug for ExposureLevel
Source§impl PartialEq for ExposureLevel
impl PartialEq for ExposureLevel
impl StructuralPartialEq for ExposureLevel
Auto Trait Implementations§
impl Freeze for ExposureLevel
impl RefUnwindSafe for ExposureLevel
impl Send for ExposureLevel
impl Sync for ExposureLevel
impl Unpin for ExposureLevel
impl UnsafeUnpin for ExposureLevel
impl UnwindSafe for ExposureLevel
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