pub enum PointRefView<'m> {
ApllPoint(&'m ApllPoint),
ApllPointWithSurface(&'m ApllPointWithSurface),
CartesianPoint(&'m CartesianPoint),
Point(&'m Point),
Complex(&'m ComplexUnit),
}Variants§
ApllPoint(&'m ApllPoint)
ApllPointWithSurface(&'m ApllPointWithSurface)
CartesianPoint(&'m CartesianPoint)
Point(&'m Point)
Complex(&'m ComplexUnit)
Trait Implementations§
Source§impl<'m> Clone for PointRefView<'m>
impl<'m> Clone for PointRefView<'m>
Source§fn clone(&self) -> PointRefView<'m>
fn clone(&self) -> PointRefView<'m>
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<'m> Copy for PointRefView<'m>
Auto Trait Implementations§
impl<'m> Freeze for PointRefView<'m>
impl<'m> RefUnwindSafe for PointRefView<'m>
impl<'m> Send for PointRefView<'m>
impl<'m> Sync for PointRefView<'m>
impl<'m> Unpin for PointRefView<'m>
impl<'m> UnsafeUnpin for PointRefView<'m>
impl<'m> UnwindSafe for PointRefView<'m>
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