pub struct ToothMorph {
pub size: f32,
pub protrusion: f32,
pub spacing: f32,
pub rotation: f32,
}Fields§
§size: f32§protrusion: f32§spacing: f32§rotation: f32Auto Trait Implementations§
impl Freeze for ToothMorph
impl RefUnwindSafe for ToothMorph
impl Send for ToothMorph
impl Sync for ToothMorph
impl Unpin for ToothMorph
impl UnsafeUnpin for ToothMorph
impl UnwindSafe for ToothMorph
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> 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