pub struct SmoothStepEdgeOptions {
pub offset: f32,
pub step_position: f32,
}Expand description
Smoothstep-like edge options.
Fields§
§offset: f32§step_position: f32Trait Implementations§
Source§impl Clone for SmoothStepEdgeOptions
impl Clone for SmoothStepEdgeOptions
Source§fn clone(&self) -> SmoothStepEdgeOptions
fn clone(&self) -> SmoothStepEdgeOptions
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 SmoothStepEdgeOptions
Source§impl Debug for SmoothStepEdgeOptions
impl Debug for SmoothStepEdgeOptions
Source§impl Default for SmoothStepEdgeOptions
impl Default for SmoothStepEdgeOptions
Source§impl PartialEq for SmoothStepEdgeOptions
impl PartialEq for SmoothStepEdgeOptions
Source§fn eq(&self, other: &SmoothStepEdgeOptions) -> bool
fn eq(&self, other: &SmoothStepEdgeOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SmoothStepEdgeOptions
Auto Trait Implementations§
impl Freeze for SmoothStepEdgeOptions
impl RefUnwindSafe for SmoothStepEdgeOptions
impl Send for SmoothStepEdgeOptions
impl Sync for SmoothStepEdgeOptions
impl Unpin for SmoothStepEdgeOptions
impl UnsafeUnpin for SmoothStepEdgeOptions
impl UnwindSafe for SmoothStepEdgeOptions
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