pub struct SnapTriple {
pub a: i64,
pub b: i64,
pub c: i64,
pub angle: f64,
pub distance: f64,
}Expand description
Result of a snap operation.
Fields§
§a: i64§b: i64§c: i64§angle: f64§distance: f64Implementations§
Trait Implementations§
Source§impl Clone for SnapTriple
impl Clone for SnapTriple
Source§fn clone(&self) -> SnapTriple
fn clone(&self) -> SnapTriple
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 SnapTriple
impl Debug for SnapTriple
impl Copy for SnapTriple
Auto Trait Implementations§
impl Freeze for SnapTriple
impl RefUnwindSafe for SnapTriple
impl Send for SnapTriple
impl Sync for SnapTriple
impl Unpin for SnapTriple
impl UnsafeUnpin for SnapTriple
impl UnwindSafe for SnapTriple
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