pub struct ChinPadConfig {
pub ref_arc_rad: f32,
pub max_projection: f32,
}Expand description
Configuration for chin pad.
Fields§
§ref_arc_rad: f32Reference angle (informational, used in arc approximation).
max_projection: f32Maximum allowed projection.
Trait Implementations§
Source§impl Clone for ChinPadConfig
impl Clone for ChinPadConfig
Source§fn clone(&self) -> ChinPadConfig
fn clone(&self) -> ChinPadConfig
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 ChinPadConfig
impl Debug for ChinPadConfig
Auto Trait Implementations§
impl Freeze for ChinPadConfig
impl RefUnwindSafe for ChinPadConfig
impl Send for ChinPadConfig
impl Sync for ChinPadConfig
impl Unpin for ChinPadConfig
impl UnsafeUnpin for ChinPadConfig
impl UnwindSafe for ChinPadConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more