pub struct PointM<T: FloatIsh> {
pub x: T,
pub y: T,
pub z: Option<T>,
pub m: T,
}Fields§
§x: T§y: T§z: Option<T>§m: TTrait Implementations§
Source§impl<T: PartialOrd + FloatIsh> PartialOrd for PointM<T>
impl<T: PartialOrd + FloatIsh> PartialOrd for PointM<T>
impl<T: Copy + FloatIsh> Copy for PointM<T>
impl<T: FloatIsh> StructuralPartialEq for PointM<T>
Auto Trait Implementations§
impl<T> Freeze for PointM<T>where
T: Freeze,
impl<T> RefUnwindSafe for PointM<T>where
T: RefUnwindSafe,
impl<T> Send for PointM<T>where
T: Send,
impl<T> Sync for PointM<T>where
T: Sync,
impl<T> Unpin for PointM<T>where
T: Unpin,
impl<T> UnwindSafe for PointM<T>where
T: UnwindSafe,
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