pub enum CartesianPointRef {
ApllPoint(ApllPointId),
ApllPointWithSurface(ApllPointWithSurfaceId),
CartesianPoint(CartesianPointId),
}Variants§
ApllPoint(ApllPointId)
ApllPointWithSurface(ApllPointWithSurfaceId)
CartesianPoint(CartesianPointId)
Implementations§
Source§impl CartesianPointRef
impl CartesianPointRef
pub fn resolve<'m>(&self, model: &'m StepModel) -> CartesianPointRefView<'m>
pub fn entity_key(&self) -> EntityKey
Trait Implementations§
Source§impl Clone for CartesianPointRef
impl Clone for CartesianPointRef
Source§fn clone(&self) -> CartesianPointRef
fn clone(&self) -> CartesianPointRef
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 moreSource§impl Debug for CartesianPointRef
impl Debug for CartesianPointRef
Source§impl PartialEq for CartesianPointRef
impl PartialEq for CartesianPointRef
Source§fn eq(&self, other: &CartesianPointRef) -> bool
fn eq(&self, other: &CartesianPointRef) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CartesianPointRef
Auto Trait Implementations§
impl Freeze for CartesianPointRef
impl RefUnwindSafe for CartesianPointRef
impl Send for CartesianPointRef
impl Sync for CartesianPointRef
impl Unpin for CartesianPointRef
impl UnsafeUnpin for CartesianPointRef
impl UnwindSafe for CartesianPointRef
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