pub struct SymbolPlacementConfig {
pub fade_in_per_second: f32,
pub fade_out_per_second: f32,
pub viewport_padding_factor: f64,
}Expand description
Placement tuning parameters.
Fields§
§fade_in_per_second: f32Fade-in rate in opacity units per second.
fade_out_per_second: f32Fade-out rate in opacity units per second.
viewport_padding_factor: f64Extra world-space margin multiplier used for viewport culling.
Trait Implementations§
Source§impl Clone for SymbolPlacementConfig
impl Clone for SymbolPlacementConfig
Source§fn clone(&self) -> SymbolPlacementConfig
fn clone(&self) -> SymbolPlacementConfig
Returns a duplicate 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 SymbolPlacementConfig
impl Debug for SymbolPlacementConfig
Auto Trait Implementations§
impl Freeze for SymbolPlacementConfig
impl RefUnwindSafe for SymbolPlacementConfig
impl Send for SymbolPlacementConfig
impl Sync for SymbolPlacementConfig
impl Unpin for SymbolPlacementConfig
impl UnsafeUnpin for SymbolPlacementConfig
impl UnwindSafe for SymbolPlacementConfig
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