pub enum IesLuminousOpening {
Show 15 variants Point, Rectangular { width: f64, length: f64, }, RectanguarLuminousSides { width: f64, length: f64, height: f64, }, Circular { diameter: f64, }, Ellipse { width: f64, length: f64, }, VerticalCylinder { diameter: f64, height: f64, }, VerticalEllipsoidalCylinder { width: f64, length: f64, height: f64, }, Sphere { diameter: f64, }, EllipsoidalSpheroid { width: f64, length: f64, height: f64, }, HorizontalCylinderAlong { diameter: f64, length: f64, }, HorizontalEllipsoidalCylinderAlong { width: f64, length: f64, height: f64, }, HorizontalCylinderPerpendicular { width: f64, diameter: f64, }, HorizontalEllipsoidalCylinderPerpendicular { width: f64, length: f64, height: f64, }, VerticalCircle { diameter: f64, }, VerticalEllipse { width: f64, height: f64, },
}

Variants

Point

Rectangular

Fields

width: f64
length: f64

RectanguarLuminousSides

Fields

width: f64
length: f64
height: f64

Circular

Fields

diameter: f64

Ellipse

Fields

width: f64
length: f64

VerticalCylinder

Fields

diameter: f64
height: f64

VerticalEllipsoidalCylinder

Fields

width: f64
length: f64
height: f64

Sphere

Fields

diameter: f64

EllipsoidalSpheroid

Fields

width: f64
length: f64
height: f64

HorizontalCylinderAlong

Fields

diameter: f64
length: f64

HorizontalEllipsoidalCylinderAlong

Fields

width: f64
length: f64
height: f64

HorizontalCylinderPerpendicular

Fields

width: f64
diameter: f64

HorizontalEllipsoidalCylinderPerpendicular

Fields

width: f64
length: f64
height: f64

VerticalCircle

Fields

diameter: f64

VerticalEllipse

Fields

width: f64
height: f64

Implementations

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.