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