#[repr(C, packed(1))]pub struct ScFlyingPixelFilterParams {
pub threshold: i32,
pub enable: bool,
}Fields§
§threshold: i32!< Range in [1, 16]. The larger the value is, the more obvious the filtering effect is and the more points are filtered out.
enable: bool!< Whether to enable flying pixel filter.
Trait Implementations§
Source§impl Clone for ScFlyingPixelFilterParams
impl Clone for ScFlyingPixelFilterParams
Source§fn clone(&self) -> ScFlyingPixelFilterParams
fn clone(&self) -> ScFlyingPixelFilterParams
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 ScFlyingPixelFilterParams
Source§impl Debug for ScFlyingPixelFilterParams
impl Debug for ScFlyingPixelFilterParams
Source§impl Default for ScFlyingPixelFilterParams
impl Default for ScFlyingPixelFilterParams
Source§fn default() -> ScFlyingPixelFilterParams
fn default() -> ScFlyingPixelFilterParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ScFlyingPixelFilterParams
impl RefUnwindSafe for ScFlyingPixelFilterParams
impl Send for ScFlyingPixelFilterParams
impl Sync for ScFlyingPixelFilterParams
impl Unpin for ScFlyingPixelFilterParams
impl UnsafeUnpin for ScFlyingPixelFilterParams
impl UnwindSafe for ScFlyingPixelFilterParams
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