#[non_exhaustive]pub struct ViewSunAzimuthInput { /* private fields */ }
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).
Implementations§
source§impl ViewSunAzimuthInput
impl ViewSunAzimuthInput
sourcepub fn lower_bound(&self) -> Option<f32>
pub fn lower_bound(&self) -> Option<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) -> Option<f32>
pub fn upper_bound(&self) -> Option<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
Returns a copy of the value. Read more
1.0.0 · 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 ViewSunAzimuthInput
impl Debug for ViewSunAzimuthInput
source§impl PartialEq<ViewSunAzimuthInput> for ViewSunAzimuthInput
impl PartialEq<ViewSunAzimuthInput> for ViewSunAzimuthInput
source§fn eq(&self, other: &ViewSunAzimuthInput) -> bool
fn eq(&self, other: &ViewSunAzimuthInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ViewSunAzimuthInput
Auto Trait Implementations§
impl RefUnwindSafe for ViewSunAzimuthInput
impl Send for ViewSunAzimuthInput
impl Sync for ViewSunAzimuthInput
impl Unpin for ViewSunAzimuthInput
impl UnwindSafe for ViewSunAzimuthInput
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