#[non_exhaustive]pub struct ViewSunAzimuthInput {
pub lower_bound: f32,
pub upper_bound: f32,
}
Expand description
The input structure for specifying ViewSunAzimuth property filter. ViewSunAzimuth refers to the Sun azimuth angle. From the scene center point on the ground, this is the angle between truth north and the sun. Measured clockwise in degrees (0-360).
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.lower_bound: f32
The minimum value for ViewSunAzimuth property filter. This filters items having ViewSunAzimuth greater than or equal to this value.
upper_bound: f32
The maximum value for ViewSunAzimuth property filter. This filters items having ViewSunAzimuth lesser than or equal to this value.
Implementations§
source§impl ViewSunAzimuthInput
impl ViewSunAzimuthInput
sourcepub fn lower_bound(&self) -> f32
pub fn lower_bound(&self) -> f32
The minimum value for ViewSunAzimuth property filter. This filters items having ViewSunAzimuth greater than or equal to this value.
sourcepub fn upper_bound(&self) -> f32
pub fn upper_bound(&self) -> f32
The maximum value for ViewSunAzimuth property filter. This filters items having ViewSunAzimuth lesser than or equal to this value.
source§impl ViewSunAzimuthInput
impl ViewSunAzimuthInput
sourcepub fn builder() -> ViewSunAzimuthInputBuilder
pub fn builder() -> ViewSunAzimuthInputBuilder
Creates a new builder-style object to manufacture ViewSunAzimuthInput
.
Trait Implementations§
source§impl Clone for ViewSunAzimuthInput
impl Clone for ViewSunAzimuthInput
source§fn clone(&self) -> ViewSunAzimuthInput
fn clone(&self) -> ViewSunAzimuthInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ViewSunAzimuthInput
impl Debug for ViewSunAzimuthInput
source§impl PartialEq for ViewSunAzimuthInput
impl PartialEq for ViewSunAzimuthInput
source§fn eq(&self, other: &ViewSunAzimuthInput) -> bool
fn eq(&self, other: &ViewSunAzimuthInput) -> bool
self
and other
values to be equal, and is used
by ==
.